summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-08-02Docs: Feynman-style blog draft, MIT license, requirements, results.md, ↵Void Agent
README rewrite with repro steps; reviews -> docs/reviews
2026-08-02Add canonical test command: scripts/test.sh (runs ↵Void Agent
tests/test_loss_reweight.py; skips without torch)
2026-08-02loss_reweight: pass Y to forward for full logits (Karpathy nanoGPT returns ↵Void Agent
last-position logits when targets=None); regression test
2026-08-02Add tests/test_loss_reweight.py: batch determinism + weighting semantics ↵Void Agent
(runs in container)
2026-08-02loss_reweight: CPU generators for randint/randperm (CUDA generators ↵Void Agent
unsupported on torch 2.4); cuda-path verified
2026-08-02Add causal experiments: synthetic frequency-matched pair (Gemini design) + ↵Void Agent
loss-reweighting (Codex design); jlens_v3 output_dir + last-layer device fix
2026-07-31jlens_v3: chunk VJP probes (16) to fit K2200 4GB; proxy chunk fix; e2e ↵Void Agent
verified (last-layer cos-sim=1.0)
2026-07-31Add faithful J-lens (jlens_v3): W_U-probed residual Jacobian per paper; ↵Void Agent
both-ways comparison vs log-softmax proxy; 3-model adversarial reviews
2026-07-30GPT-2 J-lens: use local Shakespeare + fix summaryVoid Agent
2026-07-30GPT-2 Small J-lens: frequency + dimensionality samplingVoid Agent
2026-07-30Add Pythia-70m test scriptVoid Agent
2026-07-30Fix: lr→learning_rate in configure_optimizersVoid Agent
2026-07-30Add dimensional starvation experiment (d_model=16,32,64,128 vs 384)Void Agent
2026-07-30Add controlled frequency ablation experiment (doubled-q)Void Agent
2026-07-29jlens_v2: fix import path for src/ -> root layoutVoid Agent
2026-07-29Add jlens_v2.py: simplified gradient approach for J-lensVoid Agent
2026-07-29jlens.py: fix hooks — don't detach activations, preserve gradient graphVoid Agent
2026-07-29jlens.py: fix load_model for dict-format nanoGPT checkpointsVoid Agent
2026-07-29Fix jlens.py import path: src/ -> project rootVoid Agent
2026-07-29Maxwell GPU fixes: disable bf16 SDPA, force fp32Void Agent
- model.py: honor config.flash flag (defaults True, False disables SDPA) - config: force dtype=float32 and flash=False for K2200 (compute 5.0) - Maxwell GPUs don't support bf16; SDPA internally uses bf16 operations
2026-07-29Restructure: nanoGPT at root, custom code in src/Void Agent
- Move model.py, train.py, configurator.py to root for nanoGPT compatibility - data/ and config/ directories at root with Shakespeare dataset prep scripts - src/jlens.py updated to import model from project root - Cleaned up stale src/config/ and duplicate src/ files - Fixed .gitignore: exclude out-shakespeare-char/ instead of raw data dirs
2026-07-29Initial project setup: J-lens implementation for nanoGPTVoid Agent
- Core J-lens computation (batched per-layer, per-token gradient method) - Project README with background and experiment plan - Sync script for meru Docker container deployment - Upstream nanoGPT model code copied to src/ Architecture: Computes d(log_p(token))/d(residual_stream) averaged over corpus contexts, replicating Anthropic's Jacobian Lens technique.