diff options
| author | YurenHao0426 <blackhao0426@gmail.com> | 2026-05-04 23:10:10 -0500 |
|---|---|---|
| committer | YurenHao0426 <blackhao0426@gmail.com> | 2026-05-04 23:10:10 -0500 |
| commit | ba6ead6d7a41b7ed78bb228181b7262d0c75d2eb (patch) | |
| tree | 726171fb4b0c536d9287a15daf52929ec65fa3d0 /experiments/run_dfagnn_depth.py | |
| parent | 37ba0f83e3652a215680fd8515af9c14fc02e21c (diff) | |
Global rename GRAFT → KAFT (incl. internal class + filenames)
- src/trainers.py: GraphGrAPETrainer → KAFTTrainer; module docstring + comments.
VanillaGrAPETrainer kept as-is (it is a separate control method, not KAFT).
- experiments/: all 19 runners pick up the new class name; result keys
('Cora_GRAFT' etc) become 'Cora_KAFT'; OUT_DIRs renamed (e.g.
bp_graft_depth_20seeds → bp_kaft_depth_20seeds).
- figures/: data-lookup keys + display labels both 'KAFT'; output filename
graft_depth_sweep.{pdf,png} → kaft_depth_sweep.{pdf,png}.
- File rename: experiments/run_bp_graft_depth.py → run_bp_kaft_depth.py;
figures/graft_depth_sweep.pdf → kaft_depth_sweep.pdf.
- README aligned.
Imports verified: from src.trainers import KAFTTrainer succeeds.
Diffstat (limited to 'experiments/run_dfagnn_depth.py')
| -rw-r--r-- | experiments/run_dfagnn_depth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/experiments/run_dfagnn_depth.py b/experiments/run_dfagnn_depth.py index ed6e6c3..1a36485 100644 --- a/experiments/run_dfagnn_depth.py +++ b/experiments/run_dfagnn_depth.py @@ -2,9 +2,9 @@ """H7: DFA-GNN depth sweep for Figure 4(a)-style plot. Runs DFA-GNN at L ∈ {4, 8, 10, 12, 16, 20} × {Cora, CiteSeer, PubMed, DBLP} × 20 seeds. -L=6 data already exists from prior experiments; L=2/3 skipped (CiteSeer L=2 GRAFT soft spot). +L=6 data already exists from prior experiments; L=2/3 skipped (CiteSeer L=2 KAFT soft spot). -Combined with existing BP and GRAFT depth data, produces 3-method depth curves for Figure 4(a). +Combined with existing BP and KAFT depth data, produces 3-method depth curves for Figure 4(a). """ import torch |
