diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 16:37:59 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 16:37:59 -0500 |
| commit | d818fc26cdcbc00521e4cd4e347e74d5cd3e5670 (patch) | |
| tree | 790188a6b3602991ab8aba2bc5b847e7c2750df7 /THEORY.md | |
| parent | 6531aed5719aab31fb843a74e1af2b3f7fdbb98e (diff) | |
theory: expose residual coupling instability
Diffstat (limited to 'THEORY.md')
| -rw-r--r-- | THEORY.md | 56 |
1 files changed, 56 insertions, 0 deletions
@@ -499,6 +499,61 @@ The relevant timescale is therefore the product of learning rate and number of neutral updates. Too few neutral updates leave traffic; task-period updates converge to the wrong coefficient regardless of speed. +### Incomplete residualization can create multiplicative local instability + +Residual power alone is not a stability certificate. Consider a linearized +local population `h=W x` with input covariance `C=E[x x^T]`. If the true +soma-proportional traffic coefficient is `M` and the neutral predictor is `P`, +write the remaining coupling as `D=M-P`. The innovation used for the local +update is + +```text +r = s + D h = s + D W x. +``` + +Ignoring nonlinear gates for this local calculation, the expected forward +update with decay is + +```text +E[Delta W] = eta (S + D W C - lambda W), +S = E[s x^T]. +``` + +Thus predictor error does not enter as additive noise. It multiplies the +current forward weights through `D W C`; a positive mode is a Hebbian feedback +loop. In vector form its homogeneous operator is + +```text +vec(W_(t+1)) + = [I + eta (C^T kron D - lambda I)] vec(W_t). +``` + +The implemented momentum dynamics make the same point sharply. Along a scalar +joint eigenmode let `k=d c-lambda`, where `d` and `c>=0` are eigenvalues of +`D` and `C`. With momentum `mu`, the homogeneous state follows + +```text +[w_(t+1)] [1 + eta k, eta mu] [w_t] +[m_(t+1)] = [k, mu ] [m_t]. +``` + +The determinant is `mu`. Evaluating its characteristic polynomial at one +gives `p(1)=-eta k`; therefore every `k>0` produces a real eigenvalue above +one. Weight decay stabilizes the mode only if it makes the effective `k` +nonpositive, with the usual additional discrete-time step-size constraints. +Consequently a small aggregate residual RMS can coexist with an unstable +worst-direction coefficient. Deep state dependence can amplify the same mode +across layers before a slow neutral predictor catches it. + +This calculation explains the frozen MT-1 failure boundary without changing +its result. The training-only audit finds the first active nonfinite tensors +at the stem forward weight and momentum: step 23 for raw, 69 for norm-matched +raw, and 74 for innovation. Residualization and norm matching delay the +positive-feedback mode but do not stabilize it at the frozen four-to-one +traffic setting. A scalable version needs an operator-level dissipativity or +gain-control mechanism; the pretraining residual-RMS threshold is +insufficient by itself. + ### Intermittent feedback tracking can hide behind a final cosine An idealized mirror event every `k` task updates uses @@ -576,4 +631,5 @@ The verifier checks the exact Rademacher MSE across depth, width, and K; the quadratic finite-sigma bias law; the smooth-descent step threshold; the conditional-projection Pythagorean identity and norm-matching direction invariance; neutral predictor convergence across `eta_P` and update counts; +the multiplicative residual-coupling operator and its unstable positive mode; and the task-fit teaching-signal absorption predicted above. |
