SELR trains AI models to explain their own latent reasoning
Latent reasoning lets a language model think in compact embeddings instead of writing out a full text chain of thought, which cuts token use and speeds up inference. The catch is that reasoning done in latent space is opaque: nobody can read what the model is actually doing. Researchers describe this as a trade-off in current methods. Approaches like Coconut run reasoning entirely as an unexplainable black box, with no human-readable trace at all. Approaches like Heima add a separate, post-hoc decoder to translate the latent steps into text, but that adds architectural overhead and decouples the explanation from the reasoning the model actually performed, so the explanation is not guaranteed to match the real process.
The authors propose SELR, short for Self-Explainable Latent Reasoning, as a unified framework that trains one model to do both jobs at once: reason efficiently in latent space and explain that same reasoning in language, without any extra decoder model. The core contribution is a multi-task training objective with two components trained together: an Answer Loss that shapes the latent reasoning trajectory toward correct final answers, and a CoT Loss that explicitly trains the same model to decode its own latent representations back into human-understandable reasoning steps. Because one model handles both the reasoning and the explaining, the generated latent representations are meant to be simultaneously effective for the task and semantically interpretable, removing the need for a bolted-on explainer.
The authors report validating SELR on both large language models and vision-language models, and state that it achieves better token efficiency and accuracy than baseline methods while uniquely offering self-contained explainability with no auxiliary models involved. The abstract does not include benchmark names, accuracy numbers, token-efficiency figures, author names, institutional affiliations, model sizes, or a publication date; a project page is available at jasondayuan.github.io/SELR/.
Key facts
- Latent reasoning compresses a model's chain of thought into compact embeddings for efficiency, but this makes the reasoning opaque and hard to interpret.
- Existing methods force a trade-off: Coconut-style approaches are unexplainable black boxes, while Heima-style approaches bolt on a separate post-hoc decoder that adds overhead and decouples the explanation from the actual reasoning.
- SELR trains a single model with two combined losses: an Answer Loss for correct final answers and a CoT Loss that makes the same model decode its own latent representations into human-readable reasoning steps.
- The authors say SELR was validated on both LLMs and VLMs and beats baselines on token efficiency and accuracy while providing self-contained explainability without any auxiliary model.
- No benchmark names, accuracy figures, token-efficiency numbers, author names, affiliations, or a publication date appear in the available text; a project page is hosted at jasondayuan.github.io/SELR/.
Why it matters
Latent reasoning is attractive because it is cheaper and faster than writing out a full text chain of thought, but that efficiency has come at the cost of transparency: nobody could previously see what a model was actually doing inside its latent reasoning trajectory without either accepting a black box or adding a separate decoder that might not faithfully reflect the real process. SELR's pitch is that explainability does not have to be bolted on afterward; it can be trained into the same model that does the reasoning, closing the gap between what a model computes and what it can tell a human about that computation.
Who it affects
The direct audience is researchers and engineers building efficient reasoning systems for large language models and vision-language models, who currently have to choose between an opaque latent reasoner and one that carries a separate, potentially unfaithful decoder. Downstream, anyone who needs to audit or debug why a model reached a given answer benefits if latent reasoning becomes inspectable without extra machinery. The source text names no companies, authors, or institutions behind the work.
How to use it
SELR is presented as a training framework and method in a paper, not as a released product or API. The only access point given in the text is a project page at jasondayuan.github.io/SELR/; the source does not state a license, pricing, availability of pretrained checkpoints, or code release status.
How solid is it
The claims described here come from the paper's own abstract, and the authors say SELR was tested on both LLMs and VLMs and outperformed baselines on token efficiency and accuracy. The abstract itself gives no benchmark names, no accuracy numbers, and no token-efficiency percentages, so the magnitude behind words like "superior" and "significant gains" is not visible from the text available here.
Risks and caveats
As with any self-reported abstract, the comparisons to Coconut and Heima and the claim of superior performance are the authors' own framing, with no independent verification or quantified results included in the available text. Readers who need to judge how large the reported gains are, or on which tasks, would need to check the full paper rather than the abstract.