Samip @industriaalist · Apr 19
quick writeup on why i think diffusion isn't more data efficient than AR, since it seemed to surprise a lot of people:
- the case for diffusion > AR ([1], [2]) rests on AR saturating at <5 epochs while diffusion can be trained for hundreds of epochs without overfitting. but that's AR with default regularization. with Slowrun we train AR for >30 epochs without overfitting using heavy regularization (15x standard weight decay and dropout), which captures the gains diffusion gets over hundreds of epochs. you can't push reg this hard on diffusion, the objective is already effectively regularizing the network
- data augmentation is another lever that helps AR models: sequence permutation and token masking close a lot of the gap even without heavy regularization
- [3] verifies this cleanly: simple dropout, weight decay, and token masking were enough to bridge the gap and even *surpass* diffusion. aligns with what we've seen
[1] arxiv.org/abs/2511.03276
[2] arxiv.org/abs/2507.15857
[3] arxiv.org/abs/2510.04071
[Link card] arxiv.org — Diffusion Language Models are Super Data Learners
Note from Claude Sonnet 5
A technical ML thread arguing that diffusion language models' apparent data efficiency advantage over autoregressive (AR) models is mostly an artifact of under-regularized AR baselines — heavy weight decay/dropout, sequence permutation, and token masking close or reverse the gap. Relevant to general ML architecture research Nathan follows (adjacent to brain_graph_1/DEQ architecture interests, though not directly cited there).
machine learningdiffusion modelsautoregressive modelsdata efficiencytwittersamiparxiv
Harry Partridge @part_harry_
Pretraining is data-inefficient. This is entirely a consequence of the fact that we throw away the KV cache after every forward-backward step!
If we can integrate efficient KV cache compaction into pretraining, we will unlock human level data efficiency. Neural KV cache compaction makes this possible.
[quoted tweet:]
Charlie O'Neill @oneill_c · 2h
[image: 8-panel chart grid — Train: Loss, Train: Utilization, Eval: MCQ Accuracy, Eval: MCQ Utilization, Eval: CE Utilization, Eval: Cont Utilization, Eval: Compact KL, Eval: Compact CE — all plotted against Number of Latents]
"Towards infinite context windows: neural KV cache compaction"
TL;DR: We compress an LLM's KV cache 8x in milliseconds, retaining 85%+ of factual accuracy across domains. Here's how.
Introduction...
10:53 AM · Apr 1, 2026 · 3,243 Views
[reply] 1 [retweet] 5 [heart] 45 [bookmark] 34 [share]
Harry Partridge @part_harry_ · 1h
In context learning *is* data efficient. We spend so much compute building this rich KV cache on every forward pass. If we can effectively merge this cache with our existing knowledge, we can dramatically improve the data efficiency of pre-training and RL!
Note from Claude Sonnet 5
Twitter thread on ML research about neural KV cache compaction for infinite context windows, and a hypothesis linking it to pretraining data efficiency. Technical ML architecture content relevant to Nathan's brain_graph_1 / memory-architecture interests.
machine learningkv cachetransformerspretrainingdata efficiencytwitterml research
Percy Liang @percyliang
In our last episode, careful tuning, scaling, and ensembles led to a 5x gain in data efficiency (requires 5x less data to get the same loss). Now, with a rephraser model, we can get an additional 1.8x gain in data efficiency. I know, everyone's compute constrained, but we're preparing for a data-constrained future.
> QUOTED: Konwoo Kim @konwookim · 7h
> for data-constrained pre-training, synth data isn't just benchmaxxing, it lowers loss on the real data distribution as we generate more tokens
> for even better scaling, treat synth gens as forming on...
> [Embedded paper image: "Data-efficient pre-training by scaling synthetic megadocs" — Konwoo Kim, Suhas Kotha, Yejin Choi, Tatsunori Hashimoto, Nick Haber, Percy Liang, Stanford University. Diagrams of "Simple Rephrasing," "Stitched Rephrasing," and "Latent Thoughts" methods for generating synthetic training data from real docs; a scaling chart "Scaling Generations" showing IID Loss decreasing from 3.55 (real data only) down to ~3.34-3.41 as generations per pretraining doc increase from 0 to 32, with Latent Thoughts performing best.]
2:52 PM · Mar 20, 2026 · 5,748 Views
Note from Claude Sonnet 5
A Stanford paper (Percy Liang's group) on data-efficient pretraining via synthetic "megadocs" generated by rephrasing/expanding real documents, addressing anticipated data-constrained scaling. Relevant to AI capabilities/scaling research Nathan tracks, and tangentially to his own training-efficiency work on brain_graph_1.
twittermachine learning researchdata efficiencysynthetic datapretrainingscaling lawsstanfordpercy liang