GLM-52 897
GPT-56SC 873
CL-OP5X 865 -0.9%
GROK-46H 865 -0.9%
GEM-37FH 865 -0.9%
GPT-56T 861
GLM-5 856
MUSE-SPK 841
QWEN-38X 824 -2.3%
GPT-6A 820
KIMI-K3X 810 -1%
CL-FAB5H 787 -0.9%
CL-OP5H 764 -0.9%
CL-OP46H 742 -0.9%
CL-OP47H 733 -1.1%
GEM-38FH 676 -1%
CL-OP47 586 -0.5%
INKL 531
CL-OP46 497
CL-OP48 490 -0.2%
GLM-52 897
GPT-56SC 873
CL-OP5X 865 -0.9%
GROK-46H 865 -0.9%
GEM-37FH 865 -0.9%
GPT-56T 861
GLM-5 856
MUSE-SPK 841
QWEN-38X 824 -2.3%
GPT-6A 820
KIMI-K3X 810 -1%
CL-FAB5H 787 -0.9%
CL-OP5H 764 -0.9%
CL-OP46H 742 -0.9%
CL-OP47H 733 -1.1%
GEM-38FH 676 -1%
CL-OP47 586 -0.5%
INKL 531
CL-OP46 497
CL-OP48 490 -0.2%
← Back to feed

DeepSeek V4 Gets Latent Reasoning: Community Project Moves Chain-of-Thought Into Embedding Space

A researcher published a working implementation that moves DeepSeek V4’s chain-of-thought reasoning from visible text tokens into the model’s latent (embedding) space. The project, titled “Packaging Latent Reasoning as a Real Model,” reached the top of Hacker News on August 9 under the Show HN banner and drew immediate technical discussion.

The implementation adapts CoLaR (Credit-Assigned Latent Reasoning), a method originally designed to train models to reason using internal state representations rather than generating intermediate text. Applied to DeepSeek V4, it allows the model to complete multi-step reasoning tasks without producing the text token sequences that characterise the chain-of-thought outputs shipped in DeepSeek’s standard API.

Why It Matters

DeepSeek V4 and its thinking-capable siblings generate explicit reasoning steps in text form before producing final answers. For users and API callers, this is a useful window into the model’s process. For compute infrastructure, it is expensive: every reasoning step is a billable output token.

Moving reasoning into latent space eliminates that cost. Instead of writing out each step as human-readable text, the model processes intermediate representations as internal embedding vectors. The final output appears as if the model reasoned, because it did, but the intermediate steps are never materialised into tokens.

The technique is not new. Meta’s Coconut paper (2024) explored continuous thought reasoning using “thought tokens” that operate in embedding space. What the Gilroy researcher’s work demonstrates is that the approach can be grafted onto a production-grade model like DeepSeek V4 with targeted adaptations, rather than requiring a model trained from scratch with the capability.

The Broader Implication

Visible chain-of-thought is widely understood as a training artifact: it emerged because training on human-readable reasoning data made it the dominant pattern. It is not architecturally required for multi-step reasoning to occur.

If the latent reasoning approach can be applied broadly without significant quality loss, the economic model for reasoning-capable frontier models changes. Providers that currently charge a premium for extended thinking time because of token volume would see that pricing lever weakened. Users who avoid thinking-mode models due to cost would gain access to reasoning depth at text-generation prices.

The current implementation targets DeepSeek V4’s architecture and is shared as an open-source release. The researcher noted the approach differs from the original CoLaR paper in its handling of dedicated state tokens, specifically how credit is assigned to latent steps during the adapted training phase.

Caveats

This is community research, not a production-grade system or an official DeepSeek release. Benchmark results comparing latent-reasoning DeepSeek V4 against the standard thinking model are not yet published. The HN discussion flagged open questions about training stability at scale and whether the quality of latent reasoning matches the quality of verbose chain-of-thought on hard tasks.

The significance is not the benchmark score, which does not yet exist. It is the existence proof: a production frontier model can be modified to reason without speaking.