Researchers introduce ROUTEBENCH, a diagnostic benchmark testing whether transformers can implicitly route between inductive-bias families (ridge-like, lasso-like, Huber-like, kNN-like) based on the latent data-generating regime, without changing prompt form. Dense decoder-only transformers trained from scratch at 44M–612M parameters show strong routing behavior, with a 306M model closing 80.9% of the oracle-routing gap and achieving route F1 of 84.1. Activation patching and probe controls confirm that route-relevant internal directions are decodable and functionally involved in output behavior. The results provide controlled mechanistic evidence for latent algorithm routing but explicitly do not generalize claims to pretrained LLMs or open-ended reasoning.
Researchers introduce LOTUS (Looped Transformers with parallel supervision on latents), a latent chain-of-thought method that processes reasoning steps in hidden states rather than decoded tokens. LOTUS is claimed to be the first latent-CoT approach to match explicit CoT performance at the 3B parameter scale, while reducing thought-phase latency by 2.5x–6.9x. The method uses a looped (recurrent-depth) Transformer backbone with parallel cross-entropy supervision on gold CoT-step tokens at each latent position, and the latent space is shown to be interpretable by projecting through the base LM head to recover reasoning steps.
TRACE-ROUTER is a new routing framework that addresses a fundamental mismatch in enterprise LLM deployment: existing per-call routers cannot correctly attribute feedback to individual routing decisions in long-horizon agentic workflows. The system assigns each task to a single model at admission using a contextual bandit and updates its policy using the task's terminal reward, jointly optimizing accuracy and latency. On tau2-Bench, it outperforms latency-matched interpolation between individual models by 7-8 accuracy points; on Terminal-Bench it achieves 7.1 higher accuracy points than the strongest single-model baseline with 36% lower latency.
A new arXiv preprint presents a theoretical framework explaining how Transformers develop inductive reasoning abilities by proving that training dynamics of attention models are confined to a low-dimensional invariant manifold. The framework unifies several synthetic inductive tasks (in-context n-grams, multi-hop reasoning) and characterizes how data statistics govern competition between in-context and in-weights learning. The authors show that random initializations determine which circuit 'wins' when multiple solutions exist, and that the manifold's coordinate frame can automatically detect learned circuits in trained models. The work advances mechanistic interpretability by casting circuit formation as a tractable low-dimensional dynamical phenomenon.
A new arXiv preprint investigates how components of the Transformer feedforward block — skip connections, normalization placement, and two-matrix expansion/contraction structure — determine how much rank survives across depth at initialization. The authors reinterpret skip connections and normalization not merely as magnitude controllers but as mechanisms for preserving gradient rank, unifying the Pre-Norm vs. Post-Norm literature under a single rank-collapse framework. They derive that width expansion between the two MLP matrices follows a Marchenko-Pastur law to maintain full branch Jacobian rank, and show that the initialization rank of the input-output Jacobian predicts trainability on CIFAR-10. The work recasts deep network architecture design as navigating a three-way tradeoff among rank collapse, ensemble-like behavior, and parameter count.
A new arXiv preprint introduces Review Residuals, a mechanism that replaces fixed-coefficient residual connections in transformers with a learned, input-dependent gate conditioned on both the current hidden state and the proposed sublayer update. Experiments across five model sizes (60M–1B parameters) find no advantage at small scale but statistically significant improvements over standard residuals and Highway-style gates at 590M and 1B parameters, with the benefit growing with scale. A key finding is that convex (Highway-style) gating reintroduces vanishing gradients beyond ~20 layers, while the additive identity-preserving form trains stably at all tested depths.
Researchers introduce PRP (Proactive Routing Paradigm), a method for routing multimodal queries to either a small draft model or a large target model before generating a full output, based on jointly estimated difficulty signals. The approach uses Draft Rating Learning to give the draft model an internal confidence estimator and Joint Rating Learning to predict target model competence, enabling fine-grained instance-level routing. Experiments across multimodal reasoning benchmarks show inference acceleration without accuracy loss. The work addresses a gap in speculative/cooperative inference for vision-language models, where existing language-model routing methods fail.
IBM Research published a blog post on Hugging Face exploring the practical challenges of model routing — the problem of directing inference requests to the most appropriate model given cost, latency, and capability tradeoffs. The piece argues that while routing appears straightforward in principle, production deployments surface significant complexity. This is relevant to practitioners building multi-model inference pipelines and cost-optimization strategies.
A new arXiv paper analyzes why post-hoc linearization of causal self-attention degrades model quality, identifying key-dependent rank-1 orthogonal projections as the mechanism softmax relies on and explaining why delta-style networks outperform gated accumulation. The authors introduce structural interventions—sink tokens, short convolutions, and fixed-budget cache routing—applied in a frozen-backbone regime. Scaling across LLaMA and Qwen models up to 32B parameters, the approach outperforms prior post-hoc linearization baselines on MMLU and matches long-context retrieval of adaptive-caching frameworks.