Mobius Separates Knowledge From Reasoning for Faster Inference

A shared feed-forward memory and iterative attention reasoners retain comparable downstream scores while reducing continual-pretrained 35B-model inference time by nearly 4×.

Editorial Desk·August 25, 2026·4 min readmoderate

Underlying Paper

Intern-S2-Mobius: Foundation Model with Decoupled Knowledge and Reasoning

We introduce Mobius-v0, an architecture that comprises a globally shared Memory (FFN) that stores knowledge vectors and multiple Reasoners (Self-Attn) that iteratively achieve compositional reasoning. Using hidden states as cache and carrier, reasoners repeatedly query memory for required knowledge-vectors, while the knowledge is transmitted back to reasoning operators. Through this knowledge-reasoning-separation architecture, Mobius achieves better knowledge compression and reasoning efficiency. Built upon Mobius-v0 architecture: 1) Our 7B model trained-from-scratch achieves similar downstream score as a 7B Transformer baseline with 62.6% of baseline's training data. 2) Our Intern-S2-Mobius, continually-pretrained from Qwen3.5-35B, achieves similar downstream score while delivering nearly 4x end-to-end inference speedup.

arXiv:2608.14290Submitted: Aug 17, 2026v1

Large language models entangle factual storage and token-to-token computation inside every transformer block. That coupling makes a model expensive to run even when a query requires only a small subset of its learned knowledge. Intern-S2-Mobius proposes a different division of labor: globally shared feed-forward memory stores knowledge vectors, while multiple self-attention reasoners retrieve and compose those vectors through hidden states that act as a cache and carrier.

Core Contribution

The paper’s central claim is architectural rather than a new training objective. Mobius-v0 shares one memory component across the model and assigns the iterative work of composition to separate reasoning operators. The intended effect is twofold: parameterized knowledge need not be repeatedly replicated across layers, and attention can focus on transforming retrieved information rather than serving as the sole site of both storage and inference.

This distinction matters because it targets a practical trade-off in large models. A system that preserves downstream quality with less training data or lower serving latency is useful only if the new routing arrangement does not erase the benefits of depth. The authors report that a 7B Mobius model trained from scratch reaches a similar downstream score to a 7B Transformer baseline after using 62.6% of the baseline’s training data. For a converted and continually pretrained model, they report similar downstream performance to Qwen3.5-35B with nearly 4× end-to-end inference speedup.

Technical Approach

Mobius uses hidden states as the interface between its two roles. Reasoners repeatedly query the shared FFN memory for relevant knowledge vectors, then pass the resulting representations back into subsequent reasoning operations. In the paper’s framing, this turns the network into a loop: memory supplies content and attention-based reasoners determine how that content should be combined.

The architecture also makes routing behavior observable. Figure 6 compares expert-selection frequency by layer for a 7B model trained from scratch and a 35B model obtained through architecture conversion plus continual pre-training. The converted model’s experts are reordered specifically to expose inherited routing structure. That visualization supports the narrower point that conversion retains organized expert-use patterns; it does not by itself establish that the pattern causes the reported quality or speed results.

Figure 6. Expert-Activation pattern across layers under two training recipes. The left panel shows Mobius-7B trained from scratch; the right panel shows Intern-S2-Mobius-35B obtained by architecture conversion and continual pre-training. Rows denote expert IDs, columns denote layer indices, and color represents the base-10 logarithm of selection frequency. Expert IDs in the right panel are reordered to reveal the inherited routing structure.

The model is also paired with multi-token prediction behavior. Figure 8 applies a layerwise prediction lens under the same teacher-forced context to Mobius and a Qwen3.5 baseline. Mobius produces more target-aligned intermediate predictions and a five-token draft accepted in full, whereas the baseline produces a two-token accepted prefix. This is a useful mechanistic example of why speculative-style decoding can benefit from better intermediate drafts, though it is an illustrative case rather than an aggregate benchmark.

Figure 8. Layerwise prediction lens for Mobius and the Qwen3.5 baseline under an identical teacher-forced context. The t+1 column represents standard next-token prediction, while t+2 through t+5 are subsequent MTP predictions. Each cell shows the token predicted from a given hidden-state view; color intensity denotes its probability, and a black outline marks agreement with the target continuation. Mobius exhibits more target-aligned intermediate predictions and produces a five-token draft accepted in full, while the baseline produces only a two-token accepted prefix.

Results and Analysis

The reported efficiency result is a nearly 4× end-to-end inference speedup for continually pretrained Intern-S2-Mobius-35B relative to Qwen3.5-35B while maintaining a similar downstream score. Alongside the from-scratch 7B comparison, this places the architecture in both a native-training and an architecture-conversion setting.

The speed claim is consequential, but its interpretation depends on evaluation conditions. The supplied material does not expose the hardware configuration, latency distribution, prompt lengths, batch sizes, or exact downstream benchmark values. Likewise, the 62.6% training-data comparison is promising, yet “similar” leaves the size and variance of any quality gap unspecified here.

Evidence and Scope

The paper presents both a from-scratch 7B experiment and a 35B architecture-conversion setting, which is stronger than a single demonstration. It also includes routing and prediction-lens diagnostics rather than relying only on final scores. The evidence supports treating Mobius as a credible efficiency-oriented architecture proposal. It does not yet show whether the same trade-off holds across long-context tasks, diverse reasoning domains, or production serving conditions.

Evidence Box

moderate

Key Claims

  • Shared FFN memory separates knowledge storage from iterative reasoning
  • A 7B Mobius model matches a 7B Transformer with less training data
  • Converted Intern-S2-Mobius preserves downstream quality with faster inference

Key Results

  • 7B Mobius used 62.6% of the 7B Transformer baseline’s training data for a similar downstream score
  • Continually pretrained Intern-S2-Mobius-35B reports nearly 4× end-to-end inference speedup versus Qwen3.5-35B at similar downstream score
  • Mobius accepted a five-token draft in the illustrated prediction-lens example versus a two-token prefix for Qwen3.5

Limitations & Caveats

  • No benchmark-level downstream scores or uncertainty estimates visible in the supplied pages
  • Nearly 4× speedup lacks hardware, batching, prompt-length, and latency-distribution details in the supplied material
  • Prediction-lens comparison is illustrative rather than aggregate evaluation

Related Articles

Readers are encouraged to consult the original arXiv paper for complete details. SOTA Papers does not make claims beyond what is supported by the authors' reported evidence.