Papers
Topics
Authors
Recent
Search
2000 character limit reached

Fast-Slow Inference Strategies

Updated 3 July 2026
  • Fast-slow inference is a computational paradigm that integrates rapid heuristic approximations with slower, resource-intensive computations to manage efficiency–accuracy trade-offs.
  • It employs adaptive routing, confidence estimation, and cascaded processing to decide when to invoke detailed reasoning for complex or ambiguous inputs.
  • Practical implementations in vision, language, robotics, and theorem proving demonstrate significant speed gains and improved accuracy by dynamically allocating computational resources.

Fast-Slow Inference

Fast-slow inference is a class of computational strategies in artificial intelligence, machine learning, and mathematical modeling which aims to integrate two distinct modes of information processing: a computationally efficient "fast" mode that produces rapid, often approximate outputs, and a "slow" mode capable of more deliberative, accurate, or robust inference at higher computational cost. This paradigm is motivated by dual-process theories in cognitive science, which posit separable systems for intuition (System 1) and deliberation (System 2), and is operationalized across domains such as language reasoning, vision, recommendation, robotics, and dynamical systems. Fast-slow inference frameworks are designed to maximize the utility–efficiency trade-off by allocating computational resources dynamically based on problem difficulty, uncertainty, or task requirements.

1. Conceptual Foundations and Motivation

Fast-slow inference stems from the need to balance efficiency and accuracy in complex reasoning and decision tasks. Dual-process theory in psychology provides the canonical analogy, where System 1 delivers rapid, heuristic judgments, while System 2 engages in slower, more analytic reasoning. This dichotomy is mapped onto computational systems to circumvent pathologies such as overthinking, excessive resource usage, or excessive reliance on brittle heuristics (Xiao et al., 25 Apr 2025, Chung et al., 27 May 2025, Zhang et al., 2024).

In practice, fast-slow inference addresses two major desiderata:

  • Throughput-accuracy trade-off: Utilizing fast, low-cost procedures for the majority of queries while reserving slow, high-cost, high-fidelity computation for difficult, uncertain, or ambiguous cases.
  • Adaptive computation: Dynamically scheduling or routing between fast and slow modes based on input characteristics, intermediate uncertainty, or external constraints.

2. Architectural Patterns and Implementation Strategies

Fast-slow inference frameworks exhibit significant diversity in architectural realization, but share core patterns across application domains.

2.1. Selective Routing and Confidence-driven Switching

Several works implement an explicit confidence estimator or difficulty metric to selectively trigger slow inference:

  • In the FAST-GRPO framework for vision-language reasoning, model-centric metrics estimate question difficulty and complexity to adapt reasoning depth. Questions estimated as easy are answered with concise chains (fast), while complex or hard items trigger longer, more detailed reasoning (slow) (Xiao et al., 25 Apr 2025).
  • DynaThink for LLM reasoning uses voting-based and step-count heuristics to decide whether a majority answer produced quickly by the model can be trusted (fast) or requires fallback to self-consistency or more complete verification (slow) (Pan et al., 2024).
  • In FS-VisPR for video question answering, an explicit model-confidence score decides whether to accept the answer from a fast reasoning pass or trigger a slow, compositional visual program reasoning phase (Li et al., 22 Sep 2025).

2.2. Cascades and Hybrid Pipelines

Fast-slow architectures often compose multiple modules in a staged or agentic pipeline:

  • The planner in TwiSTAR orchestrates fast retrieval, candidate ranking, or slow chain-of-thought-based recommendation, with an agent policy trained via supervised learning and reinforcement learning to minimize latency while maximizing accuracy (Cao et al., 12 May 2026).
  • In the ENIGMA ATP system, clause selection in automated theorem proving is performed in three layers: a parental filter (fast GBDT), a fast filter (GBDT on clause features), and a slow filter (GNN over clause graphs). Components are chained such that only candidates likely to be useful for proof discovery progress to the next, more expensive stage (Goertzel et al., 2021).

2.3. Memory and Temporal Separation

Temporal and memory separation mechanisms underpin several fast-slow designs:

  • In slow-fast inference for long-context LLMs, frequent fast steps use a compact, stable sparse memory to support efficient decoding, with infrequent slow steps triggered at semantic boundaries to refresh the memory with full dense attention (Xie et al., 12 Mar 2026).
  • In video processing (SegFS), semantic reasoning is performed sparsely on keyframes (slow path), and object memory is projected into the backbone feature space to guide lightweight instance relocalization across non-keyframes (fast path). This decouples semantic prediction from dense, framewise mask generation (Barsellotti et al., 30 Jun 2026).

2.4. Asynchronous and Cross-timescale Designs

Fast-slow inference also enables asynchronous, cross-frequency deployment, especially in robotics:

  • In DuoCore-FS for whole-body robotic manipulation, a slow vision-LLM runs at 1–3 Hz, encoding high-level semantics into a bridge buffer, which is then consumed by a fast, 30 Hz action policy for low-latency motor control. End-to-end training aligns representations for robust, high-frequency actuation with intermittent semantic refresh (Zou et al., 23 Dec 2025).

3. Mathematical Formulations and Dynamic Trade-off Control

Across domains, fast-slow inference is formalized using:

  • Auxiliary metrics (difficulty, uncertainty, entropy, margin) for dynamic path selection.
    • Example: In FAST-GRPO, difficulty is estimated as "1 minus pass@k success rate" and image complexity via entropy-based metrics; these guide reward shaping and KL regularization (Xiao et al., 25 Apr 2025).
    • In FS-GEN collaborative LLM decoding, System 1 entropy or top-2 margin triggers System 2 intervention (Zhang et al., 2024).
  • Staged reward functions and adaptive regularization
    • In FAST-GRPO, reward functions combine accuracy, formatting, and chain length; KL regularization coefficients are dynamically conditioned on question difficulty to balance exploitation and exploration per-instance (Xiao et al., 25 Apr 2025).
    • In Thinker, reinforcement learning optimizes fast (intuitive), verification, and slow (deliberative) phases with stage-specific token budgets and rewards that do not propagate across stages (Chung et al., 27 May 2025).
  • Empirical scaling laws for intervention rate
    • FS-GEN reports that System 2 intervention required during LLM–SLM collaborative decoding follows a scaling law in model size ratio and rarely exceeds 20% across tasks (Zhang et al., 2024).
  • Hierarchical dynamical models
    • In time-series and degradation inference, hierarchical controlled differential equations (H-CDE) formally disentangle slow and fast latent dynamics through coupled CDEs, path transformations, and monotonicity-inducing activations, optimizing the overall predictive likelihood under multi-scale integration schemes (Zhao et al., 30 Aug 2025).

4. Empirical Results and Practical Impact

Key empirical findings across domains demonstrate the quantitative benefits and trade-offs of fast-slow inference:

Framework Domain Main Efficiency Gain Main Accuracy Gain
FAST-GRPO Vision-Language 32.7–67.3% fewer tokens (vs. slow baselines) +10pp over base
TwiSTAR Recommendation 0.65s median latency (vs. 2.15s slow, 0.39s fast) +0.011 N@10 (Beauty)
ENIGMA (ATP) Theorem Proving 60% more problems solved in 30s vs. baseline Improved recall
Slow-Fast Inference LLM Decoding 1.6–14.4× speedup on 8–128K context lengths Parity or better
SegFS Video Segmentation 14× lower latency than prior methods Comparable AP
FS-VisPR VideoQA Realizes fallback and parameter search for OOD queries Matches or exceeds closed-source LLMs
DuoCore-FS Robotics 3× higher action generation rate (30Hz vs. 12Hz) ↑ success rate

5. Applications and Theoretical Extensions

Fast-slow inference has been instantiated in:

6. Limitations, Interpretability, and Future Directions

Limitations of current fast-slow inference strategies include:

  • Reliance on proxy heuristics (e.g., chain length, entropy) for switching, which may not capture deeper structural complexity or OOD ambiguities.
  • Potential dichotomy between fast and slow paths may be too coarse; intermediate routing or multi-tiered policies could further improve efficiency-accuracy trade-offs (Pan et al., 2024).
  • Latency spikes at slow steps or keyframe refreshes may introduce bursty performance profiles in real-time systems—a challenge for deployment in control applications (Xie et al., 12 Mar 2026, Zou et al., 23 Dec 2025).
  • In collaborative model settings, tension remains regarding optimal allocation and coordination of knowledge between large and small models, especially under distributional shift (Zhang et al., 2024).
  • Theoretical generalization of fast-slow inference in reinforcement learning and uncertainty-aware routing remains an open area for further research.

Interpretability is often enhanced, as slow paths or intermediate steps are associated with chain-of-thought or explicit programmatic reasoning, or can be visualized in dynamic refinement processes (Chung et al., 27 May 2025, Saeed et al., 27 Jun 2025, Cao et al., 12 May 2026). Physically and semantically meaningful decompositions (e.g., degradation latent variables, semantic buffers) facilitate attribution and debugging (Zhao et al., 30 Aug 2025, Zou et al., 23 Dec 2025).

Future research directions include unified frameworks for multi-path adaptive computation, online adaptation of switching criteria, integration of meta-learning for rapid fast-path adaptation, and closed-loop coupling of fast and slow modules for end-to-end differentiable planning, reasoning, and control.


Key References

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Fast-Slow Inference.