Tsinghua '00s Alumnus Wang Guan's New Work: Disrupting Transformer Pretraining Models with 1/900 Tokens, 1/432 Compute Power

marsbitОпубликовано 2026-05-26Обновлено 2026-05-26

Введение

Tsinghua alumnus Wang Guan's team proposes HRM-Text, a novel pre-training paradigm using a Hierarchical Recurrent Model to replace standard Transformers. With just 1B parameters and 40B unique tokens trained at a cost of ~$1500, HRM-Text achieves performance comparable to 2B-7B open-source models, using up to 900x fewer tokens and 432x less estimated compute. Key innovations include a dual-timescale recurrent architecture for greater effective depth, a task-completion objective training only on answer tokens with PrefixLM masking, and techniques like MagicNorm and Warmup Deep Credit Assignment for stability. Evaluations show strong results on benchmarks like MMLU (60.7%) and GSM8K (84.5%). The work highlights how architectural priors and targeted objectives can lower pre-training barriers, though limitations include knowledge-reasoning coupling, fixed compute per token, and scalability beyond 3B parameters.

Breaking the traditional paradigm of large model pretraining, Tsinghua '00s alumnus Wang Guan's team has released a new work:

They used a Hierarchical Recurrent Model (HRM) to replace the standard Transformer, proposing HRM-Text, an efficient pretraining method that goes beyond Scaling.

Paper link: https://arxiv.org/abs/2605.20613

While using approximately 100-900x fewer training tokens and 96-432x less estimated compute compared to the standard baseline model, HRM-Text still achieved performance comparable to open-source models with 2B to 7B parameters.

Furthermore, using 1B parameters, 40B non-repeating tokens, and a training cost of about $1500, HRM-Text achieved the following scores on mainstream benchmarks: MMLU 60.7%, ARC-C 81.9%, DROP 82.2%, GSM8K 84.5%, MATH 56.2%.

Figure|Pretraining efficiency.

Based on this, they clearly propose: Structural priors and targeted training objectives can significantly lower the barrier to pretraining. This training approach makes training a foundational model from scratch feasible.

How is HRM-Text designed?

Large Language Model (LLM) pretraining is increasingly reliant on a few institutions with ample computing and data resources. Training a competitive foundational model often requires trillions of tokens, thousands of GPUs, and even tens of millions of dollars in compute investment.

However, the current training paradigm is inefficient. A large amount of computation is consumed on irrelevant tokens such as prompts, formatting padding, and web noise, resulting in a significant portion of training compute not directly serving inference.

In this work, the research team redesigned the architecture and training objective, making the pretraining of HRM-Text relatively more efficient.

Architecture: Employs a Hierarchical Recurrent Model with dual timescales, splitting computation into a slow H module and a fast L module. While a standard Transformer performs one forward pass per token, HRM performs multiple rounds of recursive updates on the same token. The H and L modules each account for only half of the recursive core parameters. The overall computational load is roughly equivalent to performing 4 recursive unrolls on the same set of parameters, increasing computational depth without adding more parameters.

Training Objective: Abandons the standard full-text autoregressive pretraining. Instead, training is performed directly on instruction-answer pairs, with loss calculated only on the answer part, combined with PrefixLM masking, allowing bidirectional attention on the instruction part and causal masked generation for the answer part.

Figure|HRM-Text architecture.

To enhance the stability of recursive training, the research team introduced MagicNorm and Warmup Deep Credit Assignment.

MagicNorm is a hybrid normalization strategy that leverages the asymmetry between forward and backward computation depths under Truncated Backpropagation Through Time (Truncated BPTT). It uses PreNorm internally within modules and adds an extra normalization layer at the module exit, thereby improving the stability of deep recursive training.

Warmup Deep Credit Assignment, on the other hand, only backpropagates gradients from the last 2 recursive steps during the initial training phase, then linearly extends to the last 5 steps. This training mechanism allows the model to converge stably on shorter credit assignment paths before gradually introducing longer dependencies.

How effective is it?

Experimental results show that HRM-Text demonstrates clear advantages in architecture efficiency, training objectives, and overall performance.

1. Under fixed training compute, is the recurrent architecture more effective?

Results show that under FLOPs-aligned conditions, HRM 1B outperforms Transformer 1B, Transformer 3B, Looped Transformer 1B, and RINS 1B on most benchmarks; comparison with TRM also indicates that HRM training is more stable.

Figure|Comparison of performance and stability with Transformer models. HRM maintained stable training dynamics across all scales, while Transformer models exhibited severe instability at the 1-billion-parameter scale. Furthermore, at the 0.6B scale, HRM achieved competitive performance on most benchmarks using only 2x less computation than Transformer models.

2. Does the task completion objective and PrefixLM help?

Ablation studies show that under FLOPs-aligned conditions, the MMLU score for a 1B Transformer increased from 40.55 with standard autoregressive training, to 47.72 after introducing the task completion objective, to 53.15 after adding PrefixLM, and finally to 60.73 after switching to the HRM architecture.

Figure|Performance comparison between different model architectures and training objectives

3. How does HRM-Text's efficiency compare to contemporary open models?

HRM-Text 1B achieved scores of 60.7, 81.9, 82.2, 84.5, and 56.2 on MMLU, ARC-C, DROP, GSM8K, and MATH respectively. Compared to open models that generally have larger training budgets, it entered the performance range of 2B to 7B open-source models using only 40B unique tokens and 1B parameters; training required up to 900x fewer tokens and up to 432x less compute.

Figure|Evaluation results of HRM-Text 1B compared with contemporary fully open-source models and open-weight models

4. Does the recurrent structure bring greater effective depth?

Results show that the standard Transformer and Looped Transformer stabilize at shallower depths, while HRM maintains more pronounced inter-block representation changes, lower cosine similarity, and higher logit lens KL values even at deeper layers.

Figure|Effective depth analysis.

Figure|Layer-wise Logit Lens KL analysis.

Limitations and Future Directions

Although HRM-Text demonstrates strong performance on inference-intensive tasks, this method still has limitations, and future research directions are proposed.

1. Towards Decoupling "Knowledge" and "Reasoning"

Currently, broader factual knowledge coverage still depends more on model scale and data breadth. HRM-Text was only trained on 40B unique tokens, and explicit knowledge sources constitute only part of the task-formatted mixed data. In the future, researchers need to design a compact reasoning core separately from external fact storage, delegating knowledge breadth to curated corpora, retrieval-augmented modules, or learnable memory.

2. Adaptive Computation Time

The recurrent scheduling of HRM-Text brings greater effective serial depth, but this also means the model must execute a fixed number of recursive steps during inference. A promising future direction is to introduce an adaptive computation time mechanism, allowing simple samples to stop computation earlier and reserving the full recursive budget for difficult samples, thereby reducing inference cost.

3. Current Scaling Validation Scope Remains Limited

The current scaling experiments only cover up to the 3B parameter Transformer control group and the 1B parameter HRM-Text. The research team states that it remains to be verified by subsequent work whether similar efficiency advantages can be maintained at larger model scales.

4. PrefixLM and Inference Frameworks

Currently, PrefixLM still faces certain engineering implementation constraints in practical deployment. Although it can run on standard text generation inference frameworks like vLLM, this requires the framework to support custom attention masks during the prefill stage. Extending it to multi-turn dialogue scenarios further requires designing a KV-cache mechanism that ensures bidirectional visibility within user segments while maintaining causal constraints for the assistant's generation process.

For more technical details, please refer to the original paper.

This article comes from the WeChat public account "Academic Headlines" (ID: SciTouTiao), author: Xia Qiansi

Связанные с этим вопросы

QWhat is HRM-Text and how does it differ from the standard Transformer architecture for pre-training large language models?

AHRM-Text is an efficient pre-training model proposed by a Tsinghua University research team. It uses a Hierarchical Recurrent Model (HRM) instead of the standard Transformer. The key difference is that HRM employs a two-timescale hierarchical recurrence, where each token undergoes multiple recursive updates (via slow 'H' and fast 'L' modules), increasing computational depth without adding parameters. This contrasts with the Transformer's single forward pass per token.

QAccording to the article, what are the key efficiency claims of HRM-Text in terms of training tokens and computational cost?

AThe article claims HRM-Text achieves performance comparable to 2B to 7B parameter open-source models while using approximately 100-900 times fewer training tokens and 96-432 times less estimated computational power compared to standard baseline models. A specific example is a 1B parameter model trained on 40B unique tokens at a cost of around $1,500.

QWhat are the two main design choices in HRM-Text's training objective that contribute to its efficiency?

AThe two main design choices in the training objective are: 1) Training directly on instruction-answer pairs and computing the loss only on the answer part, rather than using standard full-sequence autoregressive pre-training. 2) Employing PrefixLM masking, which allows bidirectional attention on the instruction (prefix) part and causal masking for generating the answer.

QWhat techniques did the researchers introduce to improve the stability of deep recurrent training in HRM-Text?

ATo improve stability for deep recurrent training, the researchers introduced two techniques: 1) MagicNorm, a hybrid normalization strategy using PreNorm inside modules and an extra normalization at the module output, leveraging asymmetry in forward/backward depths under Truncated BPTT. 2) Warmup Deep Credit Assignment, which initially backpropagates gradients only from the last 2 recursion steps and linearly extends to the last 5 steps during training.

QWhat are some of the limitations and future research directions mentioned for HRM-Text?

AThe mentioned limitations and future directions include: 1) Decoupling 'knowledge' and 'reasoning', suggesting a need to combine the compact reasoning core with external factual storage (e.g., curated corpora, retrieval-augmented modules). 2) Exploring Adaptive Computation Time to reduce inference cost for easier samples. 3) Validating the efficiency advantage at larger model scales beyond the current 3B/1B experiments. 4) Addressing engineering challenges for deploying PrefixLM in multi-turn dialogue, such as designing a suitable KV-cache mechanism.

Похожее

BTC Thrice Rejected at $80,000 Threshold, HYPE Reaches New Highs Signaling Opportunity | Guest Analysis

**Bitcoin (BTC) Struggles at $80k; HYPE Reaches New Highs | Key Analysis & Strategy** Bitcoin faces continued resistance in the $78.5k - $79.5k zone after failing to sustain a break above its daily chart rising channel. It has retreated to the channel's midline. A failure to hold here could see a test of the $73.5k - $75k support area. The 4-hour chart shows a complex corrective structure. The strategy is neutral for mid-term positions. For short-term trading, two scenarios are outlined: **A)** Selling on a failed rally into the $78.5k-$79.5k resistance, and **B)** Selling on a confirmed breakdown below the $73.5k-$75k support, both with tight risk management. Meanwhile, **HYPE** has posted consecutive highs. The 4-hour chart indicates its current uptrend may be weakening near $65, with models showing potential bearish divergence. The view is that a short-term top could be forming. The strategy advises against chasing the rally and instead looking for a potential long entry on a pullback to the $47.5 - $50 support zone, provided clear reversal signals appear. Last week, a disciplined short BTC trade based on model signals yielded a 2.78% profit. The article emphasizes that all analysis is for informational purposes only and not investment advice, highlighting the importance of strict stop-loss discipline and dynamic position management in a volatile market. *(Note: The text references proprietary models like the "Price Difference Trading Model" and "Momentum Quantification Model" for generating trade signals.)*

marsbit46 мин. назад

BTC Thrice Rejected at $80,000 Threshold, HYPE Reaches New Highs Signaling Opportunity | Guest Analysis

marsbit46 мин. назад

Tether's New Business: Helping Small Countries Issue Stablecoins

Tether has announced a partnership with the Georgian government to issue GEL₮, a Lari-pegged stablecoin, aiming to reduce costs, accelerate settlements, and promote cross-border payments. This move is part of Tether's broader strategy to establish a replicable, standardized business of issuing sovereign currency-backed stablecoins for smaller nations, alongside its flagship USDT and other regional offerings like MXNT (Mexican Peso) and CNHT (Offshore Yuan). Georgia represents an ideal test case due to its high reliance on remittances (~15% of GDP), established digital asset regulatory framework aligned with U.S. standards, and prior engagement with Tether. The country gains accelerated internationalization of its currency by accessing Tether's global distribution network and liquidity pools, where GEL₮ can be swapped directly with assets like USDT. For Tether, the immediate financial gain from Georgia's small market is minimal. The true value lies in creating a template. Successfully navigating the compliance, reserve, and redemption processes for GEL₮ allows Tether to replicate this model swiftly for other nations with similar profiles, such as Azerbaijan or Nigeria. The deeper strategy involves subtly integrating these national currencies into an informal USDT-anchored dollar system, positioning Tether as the essential routing infrastructure. This partnership highlights a potential new model: the outsourcing of sovereign currency globalization to private stablecoin issuers. It offers smaller states a faster path to digital currency integration than developing a Central Bank Digital Currency (CBDC). However, it raises significant questions about monetary sovereignty, financial stability risks, and increased dependency on a private entity. If more countries adopt this model in the coming year, Tether could evolve from a stablecoin issuer into a unique, cross-sovereign financial infrastructure service provider.

marsbit51 мин. назад

Tether's New Business: Helping Small Countries Issue Stablecoins

marsbit51 мин. назад

Notion CEO: AI companies should be a 'Jazz Band,' and I am a 'Refounder'

Notion CEO Ivan Zhao, in a recent podcast, shared his journey of twice rebuilding the company from near-collapse and now applying the same "Refounder" mindset to reshape the 1000-person organization in the AI era. He argues that AI has commoditized technical capability (Capability). True talent now hinges on Taste (judgment/values) and Agency (proactive drive), necessitating a shift in hiring—e.g., hiring more juniors for curiosity and having sales candidates demonstrate work upfront. Zhao envisions the company as a "Jazz Band"—agile and improvisational—versus a rigid "Marching Band." This is reflected in an engineering "dumbbell" structure (super juniors + top-tier seniors, with middle layers compressed), dissolving the CMO role to let teams operate directly, and integrating entrepreneurs via acquisitions to lead their expertise areas. Notion has abandoned traditional long-term product roadmaps, planning only conservatively for finances while adopting a week-by-week, improvisational approach to product strategy, as longer plans proved futile during rapid AI shifts. He concludes that while human nature and roles remain constants, companies must rewrite their approaches to hiring (valuing Taste/Agency over Capability), organizational design (reducing roles focused on coordination/execution), and planning (embracing flexibility). Modern knowledge work, being only ~150 years old, is ripe for reinvention.

marsbit52 мин. назад

Notion CEO: AI companies should be a 'Jazz Band,' and I am a 'Refounder'

marsbit52 мин. назад

BTC Faces Triple Resistance at $80,000 Milestone, HYPE Hits New Highs Signaling Potential | Invited Analysis

This weekly analysis maintains a structured framework, focusing on Bitcoin (BTC) and HYPE, dissecting their multi-timeframe price action to identify key support and resistance zones and formulate actionable trading plans. The previous week's short position on BTC yielded a 2.78% gain, reinforcing the "signal-driven, disciplined" approach. For Bitcoin, the core scenario revolves around the battle between the 78,500–79,500 USD resistance zone and the 73,500–75,000 USD support area. The daily chart shows BTC within a rising channel; a failure to hold support at the channel's midline could lead to a test of the lower boundary. The 4-hour chart details an 8-segment corrective structure from the 82,850 USD high. Two short-term strategies are proposed: (A) Selling on a failed rally into the 78.5k-79.5k zone, with a stop above 80,600, or (B) Selling a confirmed breakdown below the 73.5k-75k support, with a stop above 76,500. Medium-term positioning remains neutral. For HYPE, the 4-hour chart indicates a five-wave advance from the May 14th low, now showing potential exhaustion and a top warning signal near 65 USD. The core view is to watch for a potential short-term peak formation. The recommended strategy is to avoid chasing the rally and instead look for a long setup upon a pullback to the 47.5–50 USD support zone, provided clear stabilization and model confirmation signals appear. The report concludes with a detailed review of the prior BTC short trade, executed based on model signals and candlestick patterns, and reiterates strict risk management rules, including immediate stop-loss placement and trailing stops to protect profits. All analysis is presented as a personal trading log, not investment advice.

Odaily星球日报1 ч. назад

BTC Faces Triple Resistance at $80,000 Milestone, HYPE Hits New Highs Signaling Potential | Invited Analysis

Odaily星球日报1 ч. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Как купить S

Добро пожаловать на HTX.com! Мы сделали приобретение Sonic (S) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки Sonic (S).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение Sonic (S)После приобретения вами Sonic (S) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля Sonic (S)С легкостью торгуйте Sonic (S) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

1.4k просмотров всегоОпубликовано 2025.01.15Обновлено 2025.03.21

Как купить S

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

Он решает проблемы масштабируемости, совместимости между блокчейнами и стимулов для разработчиков с помощью технологических инноваций.

2.3k просмотров всегоОпубликовано 2025.04.09Обновлено 2025.04.09

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

HTX Learn — ваш проводник в мир перспективных проектов, и мы запускаем специальное мероприятие "Учитесь и Зарабатывайте", посвящённое этим проектам. Наше новое направление .

1.8k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на S (S) представлены ниже.

活动图片