{
 "artifacts": null,
 "category": "architecture",
 "description": "Replace a single residual feature field with two nonnegative streams: a primary representation A and a mutant or corrective representation B. A produces B through a one-way source term, while B suppresses A, creating an explicitly tunable competition mechanism that can prevent feature collapse and encourage complementary representations.",
 "formulas_latex": [
  "$$\\partial_t\\rho_A=D_A\\nabla^2\\rho_A+a_1\\rho_A-a_2\\rho_A^2-\\mu\\rho_A\\rho_B+\\xi_A\\sqrt{\\rho_A},$$",
  "$$\\partial_t\\rho_B=D_B\\nabla^2\\rho_B+b_1\\rho_B-b_2\\rho_B^2+\\lambda\\rho_A+\\xi_B\\sqrt{\\rho_B},$$",
  "$$\\rho_A^{k+1}=\\operatorname{softplus}\\!\\left(\\rho_A^k+\\Delta t[D_A\\nabla^2\\rho_A^k+a_1\\rho_A^k-a_2(\\rho_A^k)^2-\\mu\\rho_A^k\\rho_B^k]+\\sqrt{\\Delta t}\\,\\xi_A\\eta_A^k\\sqrt{\\rho_A^k+\\varepsilon}\\right),$$",
  "$$\\rho_B^{k+1}=\\operatorname{softplus}\\!\\left(\\rho_B^k+\\Delta t[D_B\\nabla^2\\rho_B^k+b_1\\rho_B^k-b_2(\\rho_B^k)^2+\\lambda\\rho_A^k]+\\sqrt{\\Delta t}\\,\\xi_B\\eta_B^k\\sqrt{\\rho_B^k+\\varepsilon}\\right).$$"
 ],
 "id": 3128,
 "implementation": "Integration point: insert this as a recurrent residual block between ordinary convolutional or transformer feature projections. Split an input feature tensor into two groups, map both through softplus to obtain nonnegative fields A and B, and evolve them for K small Euler-Maruyama steps. Use a depthwise 3x3 Laplacian convolution for the diffusion terms; parameterize a2 and b2 with softplus so they remain positive, and parameterize lambda and mu as nonnegative scalars or channelwise vectors. Pseudocode is: `A=softplus(A0); B=softplus(B0); for k in range(K): etaA=normal_like(A); etaB=normal_like(B); A=softplus(A+dt*(DA*lap(A)+a1*A-a2*A*A-mu*A*B)+sqrt(dt)*xiA*etaA*sqrt(A+eps)); B=softplus(B+dt*(DB*lap(B)+b1*B-b2*B*B+lam*A)+sqrt(dt)*xiB*etaB*sqrt(B+eps)); y=projection(concat(A,B))`. The reaction equations, asymmetric coupling, and square-root demographic noise come from the paper; the Laplacian stencil, softplus positivity map, finite-step solver, and output projection are engineering adaptations. Begin with zero noise to isolate deterministic behavior, then add noise during training. First experiment: compare this block with a standard residual block and a symmetric two-stream block in a matched-parameter ConvNet on CIFAR-10. Sweep a1 and b1 around zero while measuring mean activity, extinction probability, Jacobian spectral radius, and accuracy. The predicted signature is an active-to-absorbing transition near a1 approximately equal to zero and b1 approximately equal to zero. Near that point, A activity should fit `C*t^(-alpha_A)*(log t)^p_A` better than a pure power law, whereas B should be closer to pure-power decay. Reject the mechanism if no transition is visible or if the logarithmic fit does not improve held-out residual error by at least 10 percent.",
 "math_summary": "Use the paper's coupled reaction-diffusion dynamics with nonnegative feature densities \\(\\rho_A(x,t)\\) and \\(\\rho_B(x,t)\\). Here \\(D_A,D_B\\geq0\\) are spatial mixing strengths, \\(a_1,b_1\\) are linear growth rates, \\(a_2,b_2\u003e0\\) are self-saturation coefficients, \\(\\mu\\geq0\\) suppresses A through B, \\(\\lambda\\geq0\\) produces B from A, and \\(\\xi_A,\\xi_B\\) are noise amplitudes. The essential nonreciprocal structure is the one-way source \\(\\lambda\\rho_A\\) in the B equation and the competitive term \\(-\\mu\\rho_A\\rho_B\\) in the A equation. Positive quadratic saturation prevents unbounded pointwise growth. Near \\(a_1=b_1=0\\), both populations approach the absorbing state; the paper predicts ordinary directed-percolation-like scaling for B and logarithmically modified scaling for A below its upper critical dimension.",
 "math_tags": [
  "statistical-mechanics",
  "dynamical-systems",
  "pde",
  "stochastic-processes"
 ],
 "ml_areas": [
  "cnn",
  "rnn",
  "training-dynamics",
  "regularization"
 ],
 "paper": {
  "arxiv_id": "2609.03123",
  "arxiv_url": "https://arxiv.org/abs/2609.03123",
  "summary_what_math_gives_to_ml": "The paper provides a transferable mechanism for designing nonreciprocally coupled neural populations: an active species A generates a mutant species B, while B suppresses A, producing a multicritical active-to-absorbing transition. Its useful asset is the explicit coupled Langevin system with asymmetric cross-couplings, positivity-preserving demographic noise, and a predicted separation of critical behavior between A and B, including logarithmic corrections for A below its upper critical dimension. A neural implementation should use two nonnegative feature fields or residual streams with learnable reaction rates, then map the phase diagram and critical decay laws rather than treating the coupling as an unconstrained extra layer.",
  "title": "Death by mutants: unusual multicritical dynamics in a two-species model for absorbing state transitions",
  "year": "2026"
 },
 "ratings": {
  "difficulty": 5,
  "novelty": 7,
  "usefulness": 6
 },
 "solves": [
  "stability",
  "accuracy",
  "generalization"
 ],
 "title": "Nonreciprocal mutant feature fields",
 "url": "https://synthcore.org/idea/3128/nonreciprocal-mutant-feature-fields",
 "verification": {
  "peer_reviewed": false,
  "status": "unverified",
  "status_label": "Unverified",
  "verdict_source": "deterministic test code (paired-seed permutation statistics)",
  "verification_axes": {
   "benchmark_mechanism": {
    "confirmed": null,
    "tested": false
   },
   "practical_benchmark": {
    "beats_baseline": null,
    "tested": false
   },
   "toy_mechanism_gate": {
    "confirmed": null,
    "tested": false
   }
  }
 }
}
