@0xLogicrw: MIT's Kai-Ming He team has released a new language model, ELF (Embedded Language Flows). They bypass current autoregressive architectures by directly applying their expertise in diffusion models from the visual domain to text generation. Specifically: the entire generation process is embedded in a continuous vector space, converting it back to...

X AI KOLs Timeline Models

Summary

MIT's Kai-Ming He team released ELF, a new language model that uses diffusion processes in continuous vector space for text generation, bypassing standard autoregressive architectures and significantly reducing data requirements.

MIT's Kai-Ming He team has released a new language model called ELF (Embedded Language Flows). They bypass current autoregressive architectures by directly applying their expertise in diffusion models from the visual domain to text generation. Specifically: the entire generation process is embedded in a continuous vector space, with the data only being converted back to discrete tokens at the final step. Image pixels can change color smoothly, making them naturally suitable for diffusion model denoising. Text, however, does not work this way; words are disconnected, with no middle ground between "cat" and "dog." To bridge this gap, previous text diffusion models struggled: they either forced vocabulary lookups at every denoising step or attached a separate decoder outside the model. ELF completely severs this entanglement: it ignores the middle stages, allowing the model to quietly perform denoising calculations in continuous space, converting vectors back to text only at the very last moment using the same network. This approach not only works but is extremely data-efficient. In evaluations on OpenWebText, the 105M-parameter ELF-B model reduced perplexity (Gen. PPL) to approximately 24.1 using only 32 sampling steps, outperforming several baseline models. More importantly, it consumed only about 45B training tokens, whereas comparable competitors typically require over 500B, effectively reducing training volume by 90%. This result demonstrates that the inherent discreteness of language does not block the path for continuous diffusion. Once this approach matures, future large models could potentially break free from the architectural constraints of generating text only "left-to-right, one word at a time."
Original Article

Similar Articles

ELF: Embedded Language Flows

Hugging Face Daily Papers

ELF proposes a continuous diffusion model for language that uses embedding space and flow matching, outperforming existing discrete and continuous diffusion language models with fewer sampling steps.

@Phoenixyin13: ByteDance Seed's Cola DLM and MIT Kaiming He's ELF, both released almost simultaneously, indeed attempt to break the shackles of discrete tokens. In fact, the discreteness of language itself objectively exists. The core contribution of these two papers is to postpone the step from discrete to continuous until the very last moment. Combined with what I mentioned earlier...

X AI KOLs Timeline

Discussing two papers, ByteDance Seed's Cola DLM and MIT Kaiming He's ELF, which break the limitations of discrete tokens through a continuous diffusion paradigm, achieving better global planning and multimodal alignment.

@volokuleshov: New blog post: How to Build a Diffusion Language Model. Diffusion LLMs went from open problem to reality in 2 years (Me…

X AI KOLs Timeline

A comprehensive blog post by Volodymyr Kuleshov's Cornell group explains how to build diffusion language models, covering core techniques like masked diffusion, iterative refinement, variable-length generation, controllable generation, fast samplers, and RL post-training, using open-source models such as Mercury, Gemma Diffusion, and Nemotron Diffusion as examples.