Unverified 2026

Correlation-controlled residual roughness

Implementation & benchmark of arXiv:2609.03589 — Correlated initialization of deep residual networks

Usefulness6/10
Difficulty5/10
Novelty8/10

Source paper: Correlated initialization of deep residual networks arXiv:2609.03589 · analyzed Sep 4, 2026

AI-generated research hypothesis, automatically tested. Not peer-reviewed.

Idea description

Treat the correlation decay exponent and Hermite rank as explicit hyperparameters controlling the roughness of the depth-wise residual trajectory. Use smoother long-memory drivers for stable deep propagation and less correlated drivers when optimization needs more layer-wise diversity, while retaining critical scaling so the network does not collapse to the identity.

Formulas

$$\phi(x)=\sum_{r=q}^{\infty}a_r\,\mathrm{He}_r(x),\qquad a_q\neq0,\quad a_1=\cdots=a_{q-1}=0.$$
$$\rho(k)\sim c k^{-\alpha},\qquad H=1-\frac{\alpha q}{2},\qquad \lambda_L=L^{-H}.$$
$$\gamma>H\Rightarrow \lambda_L\sum_{l<L}(w_l-\mathbb{E}w_l)\to0,\qquad \gamma=H\Rightarrow O(1),\qquad \gamma<H\Rightarrow \text{growth with }L.$$
$$\widehat H=\frac{1}{2}\frac{\log \widehat{\operatorname{Var}}\left(\sum_{l=0}^{m-1}(w_l-\bar w)\right)-\log \widehat{\operatorname{Var}}\left(\sum_{l=0}^{m/2-1}(w_l-\bar w)\right)}{\log m-\log(m/2)}.$$

Mathematical statement

Let g_l be a stationary Gaussian sequence with long-range correlation \rho(k)\sim c k^{-\alpha}, and let w_l=\phi(g_l). Hermite rank q means that the Hermite expansion \phi(x)=\sum_{r\ge q}a_r\,\mathrm{He}_r(x) has a_q
e0 and a_1=\cdots=a_{q-1}=0. The effective memory exponent is H=1-\alpha q/2. For q=1, normalized partial sums converge to fractional Brownian motion; for q>1, they converge to a higher-order Hermite process. Larger H produces more persistent and smoother accumulation across depth, while H=1/2 is the iid/Brownian reference. The critical residual scale is \lambda_L=L^{-H}. If \lambda_L=L^{-\gamma} with \gamma>H, the accumulated perturbation vanishes and initialization becomes identity-like; if \gamma=H it remains O(1); if \gamma<H it grows with depth. This provides a measurable roughness and stability knob while marginal parameter variance is held fixed.

Implementation notes

Integrate this as a depth-wise parameter generator for residual blocks, with candidate H selected before training. Begin with q=1 because it is easiest to implement and corresponds to fractional Brownian motion. For each H in {0.5, 0.6, 0.7, 0.8}, choose alpha=2(1-H), generate a stationary Gaussian vector g[0:L] with correlation approximately c*k^{-alpha}, standardize it, and assign W_l=sigma_W*g_l to scalar gates or channel-wise low-rank gates. To test Hermite rank separately, use w_l=He_q(g_l)/sqrt(q!) for q=1 or q=2, standardize empirically, and choose alpha=2(1-H)/q so the same H is obtained. Keep the marginal variance of W_l fixed across settings and use lambda=L^{-H}. Pseudocode: for each H,q, set alpha=2*(1-H)/q; g=sample_stationary_gaussian(alpha,L); z=hermite_q(g); z=(z-mean(z))/std(z); gate[l]=sigma_gate*z[l]; lambda=L**(-H); output[l]=input[l]+lambda*gate[l]*F_l(input[l]). Estimate achieved H with the displayed block-sum log-log estimator and independently estimate covariance decay; these are diagnostics, not learned quantities. First experiment: train 20-layer and 100-layer residual MLPs on MNIST or CIFAR-10 using iid, H=0.5, H=0.7, and H=0.8 gates with three seeds and matched FLOPs. Measure early loss slope, gradient-noise variance, activation drift, final accuracy, and learning-rate sensitivity. The hypothesis is that an intermediate H improves deep optimization or accuracy while keeping activations bounded; it is falsified if H has no reproducible effect after variance matching or if larger H consistently worsens trainability.

Verification

This idea has not been verified yet.

Verification happens in two stages: Stage 1 — a mechanism check on a toy system confirms the claimed mathematical phenomenon reproduces; Stage 2 — a benchmark implements the idea on a real (small) neural network task and compares it against a tuned baseline over 8 paired seeds with a permutation test.

Artifacts

Artifacts unavailable.