From 0c70a6c80f50dc48241a9860b2364affd3a09042 Mon Sep 17 00:00:00 2001 From: YurenHao0426 Date: Wed, 29 Jul 2026 18:57:24 -0500 Subject: =?UTF-8?q?EPT=20project=20page=20=E2=80=94=20Academic=20Project?= =?UTF-8?q?=20Page=20Template=20port=20(grant-review=20noindex=20mode)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template: github.com/eliahuhorwitz/Academic-project-page-template (CC BY-SA 4.0, attribution retained) Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_014FAPDWQ49M5Ye3NpTndTpn --- index.html | 357 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 357 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..f5e863b --- /dev/null +++ b/index.html @@ -0,0 +1,357 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Training Transformer Language Models Without Backpropagation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+

Training Transformer Language Models Without Backpropagation

+
+ Author list forthcoming +
+ +
+ University of Illinois Urbana-Champaign
2026
+
+ + +
+
+
+
+
+ + + +
+
+
+
+

TL;DR

+
+
    +
  • The largest models trained from scratch without backpropagation at any level. + Every parameter update follows the Equilibrium Propagation (EP) rule — no layer, block, or + output head is trained with a backprop rule. The models are standard transformer LMs + (OLMo2-style blocks, 32k vocabulary, FineWeb-Edu); the trained network runs ordinary forward inference.
  • +
  • Matches backprop within a 4–5% perplexity band at 72M parameters, against a backprop + twin trained on identical data, steps, and optimizer — with multi-seed controls on both sides.
  • +
  • First transformer language model in the EP family, at 2.15× the size of the largest prior + EP-family result (VGG10 ImageNet classifier, ~63M params): models trained up to 135M + parameters on 2.7B tokens.
  • +
  • 2× wall-clock overhead versus backprop — where the closest prior EP work pays + 6.7–12×: one nudged phase × 3 relaxation sweeps per step versus two phases × 10 iterations.
  • +
  • Verified gradient fidelity: the EP update maintains cosine ≈0.99 to the true backprop + gradient throughout training — measured, at scale. Larger non-backprop transformers in the + literature train most parameters with local backprop inside blocks; ours use none.
  • +
  • Hardware-ready by measurement, not assumption: 8-bit quantization shows no EP-specific + penalty against an equally-quantized backprop twin; under injected analog faults (1% forward noise, + 10% error-channel noise, device-tolerance mismatch) the EP estimator tracks the faulted network at + cosine ≈0.97 — learning co-adapts to the hardware.
  • +
+
+
+
+
+
+ + + +
+
+
+
+

Abstract

+
+

+ Analog and physical accelerators promise order-of-magnitude energy savings for training, but they + cannot run backpropagation natively: exact gradients on a physical substrate require per-step + digitization or an adjoint copy of the hardware. Equilibrium Propagation extracts gradients from the + physics itself — two relaxations and local reads — and is the only member of its family with a + gradient-equivalence guarantee that we verify directly at scale. What the field has lacked is scale and + rigor: EP results stopped at mid-size vision models, without matched controls. We train standard + transformer language models end-to-end with EP — 72M parameters within 4–5% perplexity of a + matched backprop twin, models up to 135M — at 2× backprop wall-clock, with backprop twins, + multi-seed discipline, and hardware-relevant ablations (quantization, analog faults, nudge operating + windows, energy accounting) at every stage. Scaling a physical learning rule also surfaces new science: + we identified a width-scaling loss in the EP gradient invisible to per-step alignment metrics, built an + instrument that measures it in 90 minutes per candidate recipe, mapped its dose–response law, and + demonstrated an estimator-side treatment that recovers 97% of it without touching the model or the + cost budget. +

+
+
+
+
+
+ + + + +
+
+
+
+

Headline results

+
+ + + + + + +
ModelDataEP (val CE)BP twinGap
72M transformer LMFineWeb-Edu, 1.4B tok3.333.29+4–5% ppl
135M transformer LMFineWeb-Edu, 2.7B toktrained end-to-end, zero instability + events; scaling analysis below
+

Twin discipline: identical architecture, tokenizer, data order, + optimizer, steps, and evaluation; multi-seed on both sides (BP n=3, band ±0.006; EP n=2).

+ + + + + + +
Cost vs backpropThis workClosest EP work (VGG10, ImageNet)
Wall-clock overhead2.0×6.7× (single-sided) / 12× (centered)
Relaxation iterations / step3 (one phase)20 (two phases × 10)
+
+
+
+
+
+ +
+
+
+
+

The scaling science

+
+

Scaling a physical learning rule surfaces phenomena backprop never meets. Between widths 512 and 768 + we identified a width-scaling loss in the EP gradient — localized to the top half of the network, + invisible to every per-step alignment metric, and traced to response components that finite nudge + displacement under-reaches. We built a screening instrument that measures this leak in 90 minutes per + candidate recipe, mapped its dose–response law (logarithmic across two decades of displacement + amplification), and demonstrated a pure estimator-side treatment that closes 97% of it — no change to + the model, its inference path, or the cost budget. The same instruments provide the go/no-go protocol + for each next rung of the ladder.

+
+

Hardware line

+
+
    +
  • Measured energy projection for an integrated weight-stationary realization: + 0.21–0.63 pJ/MAC (SPICE-measured analog core + datasheet periphery), against a + 0.3–1 pJ/MAC digital INT8 system envelope.
  • +
  • Single-column analog prototype: SPICE-modeled, discrete multiplying-DAC parts list — kept at the + “hardware someone can actually build” level.
  • +
  • Nudge-amplitude operating windows and their evolution over training are mapped — the + dynamic-range spec an analog implementation must meet.
  • +
+
+

Roadmap

+
+

Staged scaling with matched BP controls and hardware-relevant ablations at every rung: a 150M–600M + ladder (does the gap grow or shrink with scale — measured, not assumed), then 1B–3B; each stage + gated on the previous stage’s loss, alignment, and throughput numbers. In parallel: the + algorithm→regime map across the activity-difference family (contrastive / coupled-learning arms on + the same harness), and a bounded single-column hardware feasibility study.

+
+
+
+
+
+ + + + +
+
+
+

BibTeX

+ +
+
@misc{ept2026,
+  title={Training Transformer Language Models Without Backpropagation},
+  author={(author list forthcoming)},
+  year={2026},
+  note={Project page}
+}
+
+
+ + + + + + + + + + + + + -- cgit v1.2.3