NCP Nearly Halves Training Tokens as T1 Reaches 64%

Today's Overview

  • Dynamic Gating Separates Reasoning Flaws From Ordinary Language. NSD identifies reasoning-critical tokens automatically, then limits negative-training updates to faulty behavior while preserving language priors.
  • Page Vectors Can Be Rebuilt on Demand. GLIE stores just four vectors per page while retaining nearly 80% of the uncompressed system’s nDCG@5 on ViDoRe v1.
  • NCP Expands Prediction Beyond Individual Tokens. An 8.9B model matches OLMo-3-7B’s final pretraining loss using 51.3% of its training tokens while preserving standard autoregressive generation.
  • T1 Replays Sampled Tokens and MoE Routing Exactly. TITO with per-token expert replay cuts the train-inference log-probability gap from 0.021 to 0.013. Terminal-Bench 2.1 success rises from 43.8% to 64.0%.

Featured

01 Training: Gate the Tokens, Preserve the Language

Negative training faces a token-selection problem: faulty reasoning and ordinary language share many tokens, so applying an unlearning objective indiscriminately could damage foundational language capabilities. NSD uses dynamic adaptive gating to identify reasoning-critical tokens automatically and confine gradient updates to behavioral flaws while preserving linguistic priors.

The negative signal comes from the model itself. NSD asks it to generate a problem-specific flawed persona, such as a “careless reasoner,” then pushes the student’s distribution away from that self-generated negative teacher. This requires neither reference answers nor external supervision.

The central design choice is where the negative signal changes the model. By separating the generation of flawed behavior from the selection of tokens that receive gradient updates, NSD aims to suppress reasoning errors without broadly penalizing the language used to express them. The abstract reports consistent gains over conventional on-policy self-distillation and other label-free, self-bootstrapping reinforcement learning baselines, but full-task results and language retention still require confirmation from the paper.

Key takeaways:

  • Models can create conditions such as a “careless reasoner” for each problem without external negative examples.
  • Adaptive gating concentrates updates on reasoning-critical tokens, reducing damage to language priors.
  • Teams should test both negative-condition quality and language retention before adopting negative training.

02 Retrieval: Four Vectors, Full Pages on Demand

Visual document retrieval systems may not need to store thousands of vectors for every page. Those vectors occupy a high-dimensional space but cluster near a manifold with only five to six intrinsic dimensions.

GLIE stores a small set of representative vectors for initial retrieval. It then reconstructs full vector sets for top-ranked pages and performs exact reranking. Compression becomes a question of when to reconstruct evidence, rather than which evidence to discard.

Four vectors per page retain nearly 80% of the uncompressed system’s nDCG@5 on ViDoRe v1. The previous best post-processing method retained about 70% at the same budget. Its 415,000-parameter decoder trains on 1,000 pages in under three GPU minutes without retraining the encoder.

Key takeaways:

  • Generative reconstruction can replace blunt vector pruning when page embeddings lie near a low-dimensional manifold.
  • Four vectors per page retain nearly 80% of the original retrieval quality, beating prior post-processing at the same budget.
  • Storage-constrained teams should measure reconstruction latency and recall on production data before adoption.

03 Architecture: Beyond the Next Token

Next Concept Prediction adds explicit supervision across multiple tokens without abandoning token-by-token generation. It builds a concept vocabulary from hidden states, predicts those concepts, then feeds them back into the token layer.

An 8.9B model reaches OLMo-3-7B’s final pretraining loss with 51.3% of the training tokens. After full training, its average downstream score is 2.45 points higher. GSM8K improves by 5.99 points.

Compatibility matters here. NCP preserves standard token-level autoregressive generation, although training adds a concept vocabulary, a dedicated Concept Module, and a joint objective. Its concept space can also support lightweight domain adaptation and assisted speculative decoding. Teams still need to assess concept-vocabulary construction, extra modules, joint-training complexity, and stability across domains.

Key takeaways:

  • Dual-granularity prediction adds concept-level supervision while preserving autoregressive generation.
  • Early results suggest better training efficiency and reasoning, but cross-scale model comparisons are not conclusive.
  • Teams upgrading existing pretraining stacks should assess integration cost and cross-domain stability.

04 Agent: Exact Replay Narrows Training Drift

Small discrepancies between training and sampling accumulate across hundreds of agent steps. T1 addresses this with TITO, which trains on the exact token IDs produced during sampling. It also repairs drift at turn boundaries.

For MoE models, T1 records each expert selected for every token at every MoE layer. Training then replays those routes exactly. TITO and route replay, called R3, cut the train-inference log-probability gap from 0.021 to 0.013. They also eliminate token drift within loss-bearing regions.

T1 runs task-provided validators in real shells and assigns dense rewards based on passed checks. Terminal-Bench 2.1 success rises from 43.8% to 64.0%. It reaches 27.9% on Long-Horizon Terminal Bench, ahead of GPT-5.4 and GLM-5.1. Reproduction will be expensive given the 122B model, cloud sandboxes, and complex training infrastructure.

Key takeaways:

  • T1 suggests that exact replay of sampled token IDs and MoE routes can reduce train-inference drift in long-horizon agent training.
  • TITO and R3 reduce the train-inference log-probability gap from 0.021 to 0.013 and eliminate drift in loss-bearing regions.
  • Isolated training data still yields 64.0% on Terminal-Bench 2.1 and 27.9% on Long-Horizon Terminal Bench.
NCP Nearly Halves Training Tokens as T1 Reaches 64%

Also Worth Noting

05
Separate Periodic Grids From Content-Bound Grain Before Repairing Either. Image GenMi-Ripple removes traces of repeated AI edits while trying to preserve the source image’s structure. link
06
An 8B MoT Unifies Vision Without a Separate Encoder or VAE. MultimodalSenseNova-U1.5 covers visual understanding, reasoning, and generation through one native interface. link
07
A General Hierarchical Transformer Replaces Optical-Flow Components. ArchitectureFreeFlow removes correlation volumes, feature warping, and iterative refinement to test a simpler feed-forward pipeline. link
08
Scene Programs and Solvers Recursively Build Complex 3D Worlds. MultimodalRCWM processes compositional structures from one reference image instead of generating an entire scene program at once. link
09
An Open Math-Olympiad Gold Recipe Skips Formal Provers. ReasoningThe system combines specialized checkpoints, verification, and answer refinement in one test-time compute pipeline. link
10
Shared Anatomy Supports General Medical Image Restoration. AI for ScienceUniH³ jointly models modality differences, degradation types, and structural commonalities to simplify training and improve generalization. link
11
Role Graphs Organize Multi-Agent Responsibilities and Relationships. RoboticsDRG-MAPPO provides hierarchical decision representations for autonomous systems that require sustained tactical coordination. link
12
Solver Approval Can Still Hide Semantic Drift. EvaluationA generative reward model detects formalizations whose conclusions pass despite unfaithful translations. link

Today's Observation

NCP, NSD, and T1 attach supervision to different units. NCP adds targets for multi-token concepts. NSD selects reasoning-critical tokens for negative updates. T1 uses executable task validators to score outcomes.

Each unit addresses a different failure mode. Concept-level targets extend supervision beyond individual next tokens. Token-level gating keeps a negative objective from damaging ordinary language capabilities. Executable outcomes constrain whether a long sequence of agent actions actually satisfies task requirements.

Choose one existing training task and map its supervision to the units it reaches. In the next experiment, add concept-level targets, flaw-focused token selection, and executable outcome constraints separately. Then compare which errors each signal reduces and whether combining them improves generalization.