summaryrefslogtreecommitdiff
path: root/NOTE.md
diff options
context:
space:
mode:
Diffstat (limited to 'NOTE.md')
-rw-r--r--NOTE.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/NOTE.md b/NOTE.md
new file mode 100644
index 0000000..2e37841
--- /dev/null
+++ b/NOTE.md
@@ -0,0 +1,22 @@
+# Experiment Notes
+
+## 2026-03-23: Initial Implementation and Experiments
+
+### Setup
+- GPU: NVIDIA RTX A6000 x4 (using GPU 1)
+- PyTorch 2.10.0+cu128
+- All code written from scratch following CLAUDE.md specifications
+
+### Phase A: Toy LQ Sanity Check
+- Status: Running...
+- Config: d=64, m=10, L=12, sigma=0.03, 5000 steps, batch=256
+- Methods: DFA, State Bridge, Credit Bridge
+
+### Changes Log
+- Created full project structure: models/, methods/, experiments/, metrics/, configs/
+- models/residual_mlp.py: ResidualMLP with pre-LayerNorm residual blocks
+- models/value_net.py: ValueNet V_phi with sinusoidal time embedding
+- models/state_bridge.py: StateBridgeNet G_psi
+- experiments/toy_lq.py: Linear-quadratic sanity check
+- experiments/cifar_resmlp.py: CIFAR-10 main experiment
+- metrics/credit_metrics.py: All diagnostic metrics