Lindeberg-Regularized Poisson Random Features
Implementation & benchmark of arXiv:2609.02136 — Gamma approximation and Poisson--Gaussian invariance principle on Poisson chaos
Source paper: Gamma approximation and Poisson--Gaussian invariance principle on Poisson chaos arXiv:2609.02136 ⓘ · analyzed Sep 3, 2026
AI-generated research hypothesis, automatically tested. Not peer-reviewed.
Idea description
Replace a dense Gaussian random-feature layer by a sparse Poisson-chaos layer with the same learned kernel, and penalize the layer's normalized fourth add-one energy. The penalty suppresses rare single-atom jumps, so the sparse layer approaches the Gaussian same-kernel representation in Wasserstein distance while preserving computational advantages from sparse Poisson sampling.
Formulas
Mathematical statement
For a Poisson process \(\eta\) with intensity measure \(\mu\), let \(F=I_q(f)\) be a centered multiple Poisson integral of fixed order \(q\), where \(f\) is a symmetric kernel and \(I_q\) is the compensated \(q\)-fold stochastic integral. The add-one derivative is \(D_xF=F(\eta+\delta_x)-F(\eta)\), where \(\delta_x\) adds one atom at \(x\). Define the fourth add-one energy by \(\mathcal E_4(F)=\int \mathbb E[|D_xF|^4]\,\mu(dx)\). The paper's Poisson-Gaussian invariance principle states that, for variance-normalized fixed-order chaoses, \(\mathcal E_4(F_n)\to0\) implies convergence of the Poisson integral \(I_q^{\eta}(f_n)\) and the Gaussian same-kernel integral \(I_q^{G}(f_n)\) in smooth-test and Wasserstein distance. The Gaussian reference criterion is \(F_n\xrightarrow{\mathrm d}N(0,1)\Longleftrightarrow\mathbb E[F_n^4]\to3\) for unit-variance fixed Gaussian chaos. In a neural layer, use \(\mathcal E_4(F)/\operatorname{Var}(F)^2\) as a regularizer: it penalizes sensitivity to one extra sampled atom, which controls rare-jump behavior more directly than ordinary kurtosis.
Implementation notes
(1) Integration point: implement this as a replacement for a Gaussian random-feature projection or as an optional sparse MLP or embedding projection. Discretize the feature domain into \(m\) atoms with Poisson rates \(\lambda_j\). For an MVP, use order \(q=2\), a symmetric kernel matrix \(K\in\mathbb R^{m\times m}\) with zero diagonal, and centered counts \(\xi_j=(N_j-\lambda_j)/\sqrt{\lambda_j}\), where \(N_j\sim\operatorname{Poisson}(\lambda_j)\). For input \(h\), use a learned input-dependent kernel \(K(h)\), or first project \(h\) to coefficients \(a_j(h)\); form \(F(h)=\sum_{j\ne k}K_{jk}(h)\xi_j\xi_k\). Form the Gaussian control feature \(G(h)=\sum_{j\ne k}K_{jk}(h)z_jz_k\), with \(z_j\sim N(0,1)\), using the same kernel. (2) Pseudocode: sample counts \(N\), compute \(\xi\), and compute \(F\). For each selected atom \(r\), evaluate an add-one value by replacing \(N_r\leftarrow N_r+1\), recomputing \(F^{(+r)}\), and setting \(D_rF=F^{(+r)}-F\). Accumulate the minibatch importance-sampling estimate \(\widehat{\mathcal E}_4=\frac1B\sum_{b=1}^B\sum_{r\in S_b}\mu_r|D_rF_b|^4/p_r\), where \(S_b\) is a sampled atom subset, \(p_r\) is its inclusion probability, and \(\mu_r\) is the atom intensity. Add the normalized penalty and variance penalty to the task loss, then backpropagate. (3) The paper-derived object is the fourth add-one energy and its vanishing-energy invariance interpretation. The minibatch variance, atom subsampling, inclusion probabilities, and differentiable finite-difference estimator are engineering choices. Use common random numbers when comparing Poisson and Gaussian features so both use identical kernels and inputs. (4) First cheap experiment: train a two-layer MLP on MNIST with a 512-feature Gaussian random projection as baseline. Compare it with a Poisson order-2 layer at equal expected active-feature count, both without regularization and with the add-one penalty. Track validation accuracy, gradient-norm variance, activation kurtosis, empirical Wasserstein distance between Poisson and Gaussian outputs, and wall-clock cost. Also test a rare-jump regime with small atom rates; the hypothesis is that add-one regularization improves stability and accuracy there, reducing activation tails and Poisson-versus-Gaussian discrepancy at equal sparsity. A negative result is equally clear: if the penalty does not improve accuracy or gradient stability at fixed expected active count, discard the method.
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.