summaryrefslogtreecommitdiff
path: root/configs/a14_init_logit_1.yaml
diff options
context:
space:
mode:
authorYurenHao0426 <blackhao0426@gmail.com>2026-02-11 14:21:11 -0600
committerYurenHao0426 <blackhao0426@gmail.com>2026-02-11 14:21:11 -0600
commitc69a4c6e3596f75bd392c27d3c072adc825ce497 (patch)
tree3d5c836a7adbf7e5f51e945c576e074fc13fd4cb /configs/a14_init_logit_1.yaml
parent039c12d3cf7178db6a7d80b02cf022d67231014e (diff)
A12-A14 init_logit ablation: confirm frozen OLMo cannot benefit from sparse topologyHEADmain
- A12 (logit=3): NLL 2.76, A13 (logit=0): NLL 3.51, A14 (logit=1): NLL 3.26 - All worse than baseline (2.46). Lower init_logit = more deviation = worse NLL - Confirms: gradient flows (gates move), but A=1 is global optimum for frozen model - Added Dolma streaming retry logic (max 10 retries, 30s wait) - Phase 1 frozen approach has fundamental limitation; Phase 2 (unfreeze) needed Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'configs/a14_init_logit_1.yaml')
-rw-r--r--configs/a14_init_logit_1.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/configs/a14_init_logit_1.yaml b/configs/a14_init_logit_1.yaml
new file mode 100644
index 0000000..f3278cf
--- /dev/null
+++ b/configs/a14_init_logit_1.yaml
@@ -0,0 +1,53 @@
+# A14 — Init logit = 1.0 (compromise: A≈0.62, strong gradient, mild dense bias)
+# Purpose: σ(0.5)≈0.62, strong gradient with slight bias toward connectivity.
+# Middle ground between A12 (too high?) and A13 (no bias at all).
+# Run: python scripts/train.py --config configs/a14_init_logit_1.yaml
+
+# Model
+olmo_model_id: "allenai/OLMo-2-0425-1B"
+qwen_model_id: "Qwen/Qwen3-Embedding-0.6B"
+
+# Predictor
+predictor_hidden_dim: 1024
+predictor_rank: 32
+cascading_gate_k: 5.0
+input_norm: "none"
+init_logit: 1.0
+
+# Data
+dataset: "allenai/dolma"
+dataset_name: "v1_7"
+seq_len: 1024
+batch_size: 4
+micro_batch_size: 2
+qwen_input_prefix: ""
+
+# Eval
+eval_skip: 10000
+eval_size: 50
+
+# Training — ~50M tokens = 12500 steps
+total_steps: 12500
+lr: 3e-4
+weight_decay: 0.01
+optimizer: "adamw"
+
+# Schedules — constant tau=2 (same as S2), no sparsity
+tau_init: 2.0
+tau_final: 2.0
+tau_schedule: "cosine"
+lambda_max: 0.0
+lambda_warmup_frac: 0.2
+
+# Logging
+wandb_project: "dagformer"
+wandb_run_name: "a14-init-logit-1"
+log_every: 10
+eval_every: 500
+
+# Checkpointing
+save_every: 2500
+save_dir: "checkpoints/a14/"
+
+# Hardware
+num_gpus: 1