paper-with-me

Papers

PonderLM-2: Pretraining LLM with Latent Thoughts in Continuous Space

2025-09-27 · Boyi Zeng, He Li, Shixiang Song, Yixuan Wang, Zitong Wang, Ziwei He, Xinbing Wang, Zhouhan Lin arxiv

The remarkable success of Chain-of-Thought (CoT), which enhances performance by scaling generation steps at test-time, inspires us to ask: can we leverage a similar scaling of computational steps during pretraining to improve the generation of each individual token? To address this, we propose a novel pre-training methodology: Pretraining Language Models with Latent Thoughts (PonderLM-2). Our approach pretrains a language model (LM) to first generate an intermediate latent thought-the last hidden state of the current position-which is then used as input to predict the actual subsequent token. This additional computational step enables the LM to refine its prediction within unconstrained continuous space. Our experiments demonstrate that, at an identical inference cost, a LM that generates one additional latent thought per token outperforms a standard model with double the parameters. For instance, our PonderLM-2-Pythia-1.4B, pretrained on 300B tokens from the Pile, significantly surpasses the vanilla Pythia-2.8B trained on the same data on both language modeling and a range of general downstream tasks. Furthermore, increasing the number of latent thoughts generated before each actual token-forming a chain analogous to CoT-consistently improves the model's performance. The code is available at https://github.com/LUMIA-Group/PonderLM-2.

📄 PDF Abstract BibTeX arXiv:2509.23184

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

PonderLM-3: Adaptive Token-Wise Pondering with Differentiable Masking

2026-03-02 · He Li, Feichen Song, Boyi Zeng, Shixiang Song 외 arxiv

Test-time scaling has shown that allocating more additional computation at inference can improve generation quality, motivating a natural follow-up question: where should this computation be spent? Building on this insig…

AdaPonderLM: Gated Pondering Language Models with Token-Wise Adaptive Depth

2026-03-02 · Shixiang Song, He Li, Zitong Wang, Boyi Zeng 외 arxiv

Test-time scaling via recurrent/iterative Transformers enables large language models to spend more computation at inference, but most pretrained recurrent LMs run a fixed number of iterations, wasting compute on easy tok…

The Illusion of Superposition? A Principled Analysis of Latent Thinking in Language Models

2026-04-07 · Michael Rizvi-Martel, Guillaume Rabusseau, Marius Mosbach arxiv

Latent reasoning via continuous chain-of-thoughts (Latent CoT) has emerged as a promising alternative to discrete CoT reasoning. Operating in continuous space increases expressivity and has been hypothesized to enable su…

Reasoning to Learn from Latent Thoughts

2025-03-24 · Yangjun Ruan, Neil Band, Chris J. Maddison, Tatsunori Hashimoto

Compute scaling for language model (LM) pretraining has outpaced the growth of human-written texts, leading to concerns that data will become the bottleneck to LM scaling. To continue scaling pretraining in this data-con…

MathText Generation

Latent Thoughts Tuning: Bridging Context and Reasoning with Fused Information in Latent Tokens

2026-02-10 · Weihao Liu, Dehai Min, Lu Cheng arxiv

While explicit Chain-of-Thought (CoT) equips Large Language Models (LLMs) with strong reasoning capabilities, it constrains the model's thoughts to a discrete vocabulary space. Recently, reasoning in continuous latent sp…