{
 "artifacts": null,
 "category": "architecture",
 "description": "Replace an unconstrained hidden-to-hidden interaction in an MLP or transformer feed-forward block by two gauge-related branches. Split channels with an orthogonal involution Θ, constrain the learned interaction K to anticommute with Θ, and use opposite signs of K in paired branches. This creates a testable inductive bias in which the learned interaction only transfers information between the two channel subspaces.",
 "formulas_latex": [
  "$$Xg(Y,Z)=g(\\nabla_XY,Z)+g(Y,\\nabla_X^{*}Z),\\qquad \\nabla=\\nabla^{g}+K,\\qquad \\nabla^{*}=\\nabla^{g}-K.$$",
  "$$\\nabla_X(\\Theta Y)=\\Theta(\\nabla_X^{*}Y),\\qquad \\nabla^{g}\\Theta=0\\ \\Longrightarrow\\ K_X\\Theta=-\\Theta K_X.$$",
  "$$\\Theta=\\begin{bmatrix}I_{d_+}\u00260\\\\0\u0026-I_{d_-}\\end{bmatrix},\\qquad K=\\begin{bmatrix}0\u0026A\\\\B\u00260\\end{bmatrix},\\qquad K\\Theta=-\\Theta K.$$",
  "$$F_{+}(h)=h+Lh+Kh,\\qquad F_{-}(h)=h+Lh-Kh,\\qquad F_{+}(\\Theta h)=\\Theta F_{-}(h).$$"
 ],
 "id": 2957,
 "implementation": "(1) Integration point: replace one transformer FFN residual sublayer, or one hidden-to-hidden MLP block, with a dual-gauge block. For hidden width d=d₊+d₋, fix Θ=diag(+1,…,+1,−1,…,−1), usually with d₊=d₋=d/2. Apply RMSNorm or LayerNorm to input h. Compute a shared base map L(h), and compute an interaction K(h) using only cross-partition weights. If h=(h₊,h₋), define K(h)=(A h₋, B h₊), where A and B are learned matrices or two-layer gated MLPs. (2) Pseudocode: `x=norm(h); base=block_diagonal_mlp(x); cross_plus=A(x_minus); cross_minus=B(x_plus); k=concat(cross_plus,cross_minus); y=h+alpha*(base+k)`. Define the dual branch with `y_dual=h+alpha*(base-k)`. Use the first branch in the ordinary network, or average `y` with `Theta*(dual(Theta*x))` for an explicitly symmetrized version. (3) The off-diagonal form is exact by parameterization; estimate the gauge residual as r=||F₊(Θx)−ΘF₋(x)||₂/(||x||₂+10⁻⁸). If L is not block diagonal, also measure c=||LΘ−ΘL||F/(||L||F+10⁻⁸). (4) First experiment: compare a standard six-layer width-256 transformer, a randomly split two-stream FFN with the same parameter count, and this gauge block on TinyStories language modeling or CIFAR-10 classification. Match parameters, training steps, FLOPs, optimizer, batch size, and learning-rate schedule, using at least three seeds. (5) Pre-register mechanism tests: r must remain below 10⁻⁴; removing the off-diagonal parameterization should increase r by at least 100 times. If the structure improves stability, gradient-norm spike frequency and validation-loss variance across seeds should decrease by at least 10% at equal compute. Test widths 128, 256, and 512 and report loss versus FLOPs. Falsify the transfer if the constrained model has no stability improvement, no accuracy or efficiency benefit, and no measurable relation between the gauge residual and training behavior.",
 "math_summary": "A statistical manifold has a metric g and dual connections ∇ and ∇* satisfying Xg(Y,Z)=g(∇_X Y,Z)+g(Y,∇*_X Z). Relative to the Levi-Civita connection ∇ᵍ, the connections are ∇=∇ᵍ+K and ∇*=∇ᵍ−K, where K is the statistical difference tensor. The paper defines the gauge equation ∇_X(ΘY)=Θ(∇*_X Y). If Θ is parallel under ∇ᵍ, this reduces to K_X Θ=−Θ K_X. For a neural block, choose Θ as a fixed orthogonal involution with Θ²=I and ΘᵀΘ=I, for example Θ=diag(I₍d₊₎,−I₍d₋₎). The anticommutation law forces K to be off-diagonal: K=[[0,A],[B,0]], so the positive channels interact only with negative channels and vice versa. Let L be a base map commuting with Θ. The paired residual maps F₊(h)=h+Lh+Kh and F₋(h)=h+Lh−Kh then satisfy the discrete gauge identity F₊(Θh)=ΘF₋(h).",
 "math_tags": [
  "geometry",
  "differential-geometry",
  "linear-algebra"
 ],
 "ml_areas": [
  "transformer",
  "mlp",
  "training-dynamics"
 ],
 "paper": {
  "arxiv_id": "2608.31145",
  "arxiv_url": "https://arxiv.org/abs/2608.31145",
  "summary_what_math_gives_to_ml": "The paper provides a concrete compatibility law between dual affine connections: when the tensor Θ is Levi-Civita-parallel, the statistical difference operator K must anticommute with Θ. This is transferable as a structured neural interaction in which hidden channels are split into two eigenspaces and learned couplings are forced to cross between them. The most direct experiment is a paired residual block with shared within-stream processing and an exactly off-diagonal cross-stream operator, measuring both optimization stability and the predicted gauge identity.",
  "title": "Gauge-compatible tensors on statistical manifolds: splitting and submanifold geometry",
  "year": "2026"
 },
 "ratings": {
  "difficulty": 5,
  "novelty": 8,
  "usefulness": 6
 },
 "solves": [
  "stability",
  "accuracy",
  "generalization"
 ],
 "title": "Dual-gauge cross-stream block",
 "url": "https://synthcore.org/idea/2957/dual-gauge-cross-stream-block",
 "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
   }
  }
 }
}
