diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-23 19:46:08 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-23 19:46:08 -0500 |
| commit | 32123cb36ae9521f60c9b6f67458b931b6540ef2 (patch) | |
| tree | 4731e1dc513f5b613f80c4d20fc4114044c266d3 /experiments/plot_toy_final.py | |
| parent | bbb1a36d67f2f0c83106c1e771ea2c2fcb7fd83a (diff) | |
Add final report, plots, experiment guide, and complete NOTE.md
All experiments complete:
- Toy LQ: credit bridge matches state bridge (~0.94 costate cosine)
- CIFAR-10: credit bridge (29.6%) comparable to DFA (30.0%), both beat state bridge (18.5%)
- State bridge confirms core hypothesis: perfect state prediction != useful credit
- Terminal gradient matching is essential for credit bridge
Diffstat (limited to 'experiments/plot_toy_final.py')
| -rw-r--r-- | experiments/plot_toy_final.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/experiments/plot_toy_final.py b/experiments/plot_toy_final.py index 2f7c109..e4e1a68 100644 --- a/experiments/plot_toy_final.py +++ b/experiments/plot_toy_final.py @@ -13,7 +13,7 @@ os.makedirs(output_dir, exist_ok=True) seeds = [42, 123, 456] all_data = [] for seed in seeds: - path = f'results/toy_lq/toy_lq_v2_seed{seed}_lam0.1_sig0.1_tgw1.0_fm0.0.json' + path = f'results/toy_lq_frozen/toy_lq_v2_seed{seed}_lam0.1_sig0.1_tgw1.0_fm0.0.json' if os.path.exists(path): with open(path) as f: all_data.append(json.load(f)) |
