summaryrefslogtreecommitdiff
path: root/experiments
diff options
context:
space:
mode:
authorYurenHao0426 <Blackhao0426@gmail.com>2026-07-21 06:40:07 -0500
committerYurenHao0426 <Blackhao0426@gmail.com>2026-07-21 06:40:07 -0500
commit49b86d623d1bcaa815ac35dee8bc3bfdb8abcecc (patch)
tree8b84d6257dd8e7921b54a0405fea528c9f7f0dd1 /experiments
parent215acff518eea2d6d8a5bd7c90c398f49cc3b41b (diff)
fix: scale local updates by residual Jacobian
Diffstat (limited to 'experiments')
-rw-r--r--experiments/smoke.py49
1 files changed, 47 insertions, 2 deletions
diff --git a/experiments/smoke.py b/experiments/smoke.py
index f2efa87..092e9f5 100644
--- a/experiments/smoke.py
+++ b/experiments/smoke.py
@@ -16,9 +16,47 @@ def row_cos(u, v, eps=1e-12):
return ((u * v).sum(1) / (u.norm(dim=1) * v.norm(dim=1) + eps)).mean().item()
+def flat_cos(u, v, eps=1e-12):
+ return (u.flatten() @ v.flatten() / (u.norm() * v.norm() + eps)).item()
+
+
+def check_residual_local_jacobian():
+ """The three-factor rule must include the residual branch's alpha."""
+ torch.manual_seed(7)
+ batch = 32
+ net = SDILNet([20, 16, 16, 16, 5], device="cpu", seed=4, residual=True)
+ x = torch.randn(batch, 20)
+ y = torch.randint(0, 5, (batch,))
+ for weight in net.W:
+ weight.requires_grad_(True)
+ fwd = net.forward(x)
+ loss = torch.nn.functional.cross_entropy(fwd["h"][-1], y)
+ hidden_grads = torch.autograd.grad(loss, fwd["h"][1:-1], retain_graph=True)
+ weight_grads = torch.autograd.grad(loss, net.W)
+ for weight in net.W:
+ weight.requires_grad_(False)
+
+ print("CHECK0 residual local-rule Jacobian:")
+ for l in range(net.L - 1):
+ # autograd's hidden gradient includes the mean over the batch; recover
+ # per-example errors before applying the same minibatch mean as SDIL.
+ error = -hidden_grads[l] * batch
+ delta = error * net.act_prime(fwd["u"][l])
+ if l >= 1:
+ delta = net.res_alpha * delta
+ local_update = delta.t() @ fwd["h"][l] / batch
+ exact_update = -weight_grads[l]
+ cosine = flat_cos(local_update, exact_update)
+ norm_ratio = (local_update.norm() / exact_update.norm()).item()
+ print(f" layer {l}: cos={cosine:.6f} norm_ratio={norm_ratio:.6f}")
+ assert cosine > 0.99999
+ assert abs(norm_ratio - 1.0) < 1e-5
+
+
def main():
torch.manual_seed(0)
dev = "cpu"
+ check_residual_local_jacobian()
print("loading MNIST subset...")
tr, te, n_in, n_out = get_dataset("mnist", batch_size=128, device=dev)
xb, yb = next(iter(tr))
@@ -42,6 +80,8 @@ def main():
net = SDILNet(sizes, device=dev, seed=2)
cfg = SDILConfig(eta=0.1, eta_A=0.05, eta_P=0.005, pert_every=2, pert_ndirs=8,
momentum=0.9)
+ initial_alignment = probes.alignment_report(net, x, y, yoh, cfg)
+ initial_mean_cos = sum(initial_alignment["cos_r_negg"]) / len(initial_alignment["cos_r_negg"])
print("\nCHECK2 SDIL overfit fixed batch:")
for step in range(401):
loss, _ = sdil_step(net, x, y, yoh, cfg, step)
@@ -52,9 +92,14 @@ def main():
print(f" step {step:3d} loss {loss:.4f} mean_cos(r,-g) {mc:+.3f} "
f"mean_cos(apical,-g) {mca:+.3f} per-layer_r {['%.2f'%v for v in al['cos_r_negg']]}")
assert loss < 1.5, f"SDIL should reduce loss on fixed batch, got {loss}"
+ final_mean_cos = sum(al["cos_r_negg"]) / len(al["cos_r_negg"])
+ assert final_mean_cos > initial_mean_cos + 0.1, (
+ f"trained A should improve alignment: {initial_mean_cos:.3f} -> {final_mean_cos:.3f}")
- # ---- CHECK 3: trained-A SDIL beats fixed-random-A (DFA) on alignment ----
- print("\nCHECK3 alignment: SDIL(trained A) vs DFA(fixed A):")
+ # ---- CHECK 3: report DFA as a sanity comparator. On a single repeatedly
+ # trained batch, ordinary feedback alignment can exceed learned A, so no
+ # universal ordering is asserted here; CHECK2 tests that A actually learns.
+ print("\nCHECK3 alignment sanity comparison: SDIL(trained A) vs DFA(fixed A):")
net_dfa = SDILNet(sizes, device=dev, seed=3)
cfg_dfa = dfa_config(eta=0.1, momentum=0.9)
for step in range(401):