From c29d686be44e4660c314eb1883f80cb0a0023224 Mon Sep 17 00:00:00 2001 From: Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:05:21 +0700 Subject: Make the EP explanation intuitive (#7) --- index.html | 125 +++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 80 insertions(+), 45 deletions(-) diff --git a/index.html b/index.html index 05e8408..09140fd 100644 --- a/index.html +++ b/index.html @@ -392,6 +392,12 @@ font-weight: 520; } + .state p { + margin: 5px 0 0; + color: rgba(255, 255, 255, 0.58); + font-size: 11px; + } + .difference { align-self: center; color: var(--signal); @@ -573,6 +579,32 @@ line-height: 1.65; } + .method-grid.comparison-grid { + grid-template-columns: repeat(2, 1fr); + } + + .comparison-grid .method-step { + min-height: 340px; + } + + .method-sequence { + display: flex; + align-items: center; + gap: 8px; + margin-top: 28px; + color: var(--aqua); + font-family: var(--mono); + font-size: 10px; + letter-spacing: 0.05em; + text-transform: uppercase; + } + + .method-sequence i { + width: 18px; + height: 1px; + background: currentColor; + } + .method-note { display: grid; grid-template-columns: auto 1fr; @@ -949,6 +981,10 @@ grid-template-columns: 1fr; } + .method-grid.comparison-grid { + grid-template-columns: 1fr; + } + .method-step, .method-step:last-child { min-height: auto; @@ -1030,7 +1066,6 @@ } .difference { - transform: rotate(90deg); text-align: center; } @@ -1137,8 +1172,8 @@

Language models that learn by settling.

EPT-LM is a practical route to train standard Transformer language models without a - global backward pass. During training, a small physical nudge turns local state - differences into weight updates. At inference, the model is an ordinary Transformer. + global backward pass. We gently tug the output toward the correct next token; each + layer learns from its own response. At inference, the model is an ordinary Transformer.

See the evidence @@ -1150,16 +1185,16 @@

-