- The paper introduces optimizer-aware influence scores to create solver-specific curricula from unstructured documents.
- It demonstrates over 20% relative improvement in reasoning benchmarks across math, science, and coding by dynamically adapting the training data.
- The bilevel co-evolution of generator and solver enables adaptive curriculum learning that scales effectively across domains.
Influence-Guided Self-Evolution in INFUSER: An Expert Analysis
Introduction: Motivation and Core Problem
The INFUSER framework ("INFUSER: Influence-Guided Self-Evolution Improves Reasoning" (2606.09052)) addresses a fundamental bottleneck in LLM reasoning: the scarcity of high-quality, verifiable, and useful training data, particularly when progressing to advanced reasoning domains. While RL with verifiable rewards (RLVR) has yielded substantive improvements in LLM reasoning, it is ultimately constrained by the supply of suitable training data, which is expensive to curate or generate at scale. Prior self-evolution frameworks attempt to break this bottleneck by letting models generate their own training curriculum, often leveraging document pools or self-play. However, they suffer two critical deficiencies:
- Grounding: Many rely on model outputs alone or limited formal anchors (e.g., code executors), leading to hallucination or domain restrictions.
- Utility of Generated Data: The typical practice of rewarding generators according to task "difficulty" is a coarse heuristic and fails to guarantee that generated examples yield productive learning signals for the solver.
INFUSER fundamentally reconceptualizes this self-evolution loop by formulating it as a bilevel game between a generator (which drafts questions/answers from unstructured documents) and a solver (which trains on this curriculum). The key advance is the introduction of optimizer-aware influence scores, measuring the prospective utility of each generated example: namely, does training on this QA pair incrementally improve the solver on a target distribution? This mechanism enables an adaptive, solver-specific curriculum tightly aligned with desired learning progress.
Figure 1: INFUSERโs bilevel game views the generator as proposing curriculum from raw documents and the solver as training on it, with generator credit assigned by optimizer-aware influence scores based on dev-set alignment.
Methodology: Bilevel Curriculum Optimization and Influence Rewards
The formalization casts the generator and solver as co-evolving agents, both initialized from the same pretrained LLM but subsequently diverging through independent optimization. Each training iteration comprises the following sequence:
- Document Conditioned Generation: The generator, given sampled chunks from a diverse, open-source textbook pool, proposes multiple QA pairs per document.
- Solver RL Update: The solver trains via RLVR on these QA pairs, treating generator-provided answers as gold.
- Influence Reward Estimation: Using a small fixed development set sampled from the true target distribution, the system computes the gradient of solver performance with respect to solver parameters; each generated QAโs utility is then the cosine similarity (โinfluence scoreโ) between the per-sample update directionโpreconditioned by the AdamW optimizerโand the dev-set improvement direction.
- Generator RL Update: The generator receives this scalar influence reward and is updated using a dual-normalized version of GRPO (DuGRPO), stabilizing the impact of high-variance and continuous rewards.
This structure ensures the curriculum is neither constrained by the modelโs static prior (as in self-play) nor haphazardly aligned with general "difficulty," but instead shaped specifically to improve solver performance where it matters.
Figure 2: INFUSERโs detailed data flow: generator proposes self-generated QA from documents, solver answers and is rewarded, and influence scores feed generator RL updates. Dev-set gradients provide the optimization anchor.
Crucially, INFUSERโs generator is explicitly optimizer-aware: its reward is not the vanilla influence function, but a preconditioned variant that adapts to the momentum and scaling of AdamW, yielding more reliable credit assignment across variable-length examples and optimization regimes.
Empirical Results: Benchmarks, Ablations, and Curriculum Quality
INFUSER exhibits robust, cross-domain improvements across a diverse suite of reasoning benchmarksโencompassing math (AIME, HMMT, OlympiadBench, MATH500), general science (SuperGPQA, GPQA-Diamond, MMLU-Pro, BBEH), medical, and coding domains. On the flagship Qwen3-8B-Base model, INFUSER delivers over 20% relative gain in aligned (math and science) benchmarks versus both the base model and strong recent baselines (R-Zero, AZR, SPICE, R-Few).

Figure 3: Relative accuracy gain over Qwen3-8B-Base on four headline benchmarks per self-evolution method, and validation-set accuracy curves showing INFUSERโs consistent, stable learning advantage over a frozen-generator baseline.
Notably, INFUSERโs gains persist and even scale as the base model increases in size (from 4B to 8B parameters), unlike other self-evolution methods where performance saturates or regresses at larger scales.
Generator Analysis and Curriculum Evolution
A distinctive feature of INFUSER is its ability to produce a curriculum of rising difficulty and quality tailored at the solver's current learning frontier. As training progresses:
- The accuracy gap (โstrong-against-weak gapโ) between a strong model (e.g., GPT-5.4) and the Qwen3-8B-Base on generated questions increases, evidencing the production of challenging, non-trivial examples without degenerate drift.
- Qualitative inspection shows marked improvement in question self-containment and factual alignmentโthe generator learns to pose nuanced, well-posed multi-step reasoning tasks not achievable by statically frozen generators.
Ablations: Role of Generator Adaptation and Reward Design
Comprehensive ablation studies underscore the necessity of several design decisions:
- Co-evolving Generator is Critical: A fixed or even large (โStrong-gen,โ e.g., Qwen3-32B) frozen generator is less effective than an 8B generator co-evolving with the solver, especially for synthetic reasoning domains (math, coding).
- Dev-set Memorization vs. Generalization: Directly training the solver on the dev set achieves high accuracy only on the dev distribution (potentially overfitting), whereas INFUSER generalizes to held-out test sets, indicating that the explicit separation of influence evaluation and solver reward is essential.
- DuGRPO Advantage: The dual-normalized policy-gradient update for the generator mitigates the detrimental variance amplification present in standard GRPO/Dr.GRPO or batch-only alternatives, enabling stable generator learning atop noisy influence rewards.
- Optimizer-Awareness is Necessary: Substituting the AdamW-preconditioned influence score with a vanilla (SGD) gradient similarity led to regression to frozen-generator performance.

Figure 4: Head-to-head category ฮ comparison of INFUSER vs. General-Reasoner and ablation settings, highlighting INFUSERโs superiority in mathematics and its balanced cross-domain transfer.
Hybridization with RLVR and Instruction-Finetuned Anchors
INFUSER retains flexibility: it augments instruction-finetuned models (e.g., OLMo-3-7B-Instruct-SFT) and hybridizes with math RLVR, stabilizing reasoning depth and sampling variance, particularly by anchoring reasoning length through verified math tasks.
Figure 5: pass@k curves on open-form math and general reasoning benchmarks, showing that INFUSER improves both best-of-k and support coverage, not only top-1 accuracy.
Theoretical and Practical Implications
INFUSER demonstrates the following:
- Data-Efficient and Targeted Self-Evolution: Influence-guided rewards enable LLMs to efficiently convert massive, cheap, unstructured corpora into highly targeted, impactful training signalsโbypassing the need for large curated or teacher-generated datasets.
- Adaptive Curriculum Learning: By aligning the generatorโs reward with actual incremental solver improvement (not heuristic difficulty), INFUSER learns to adapt the complexity of generated tasks as the solver advances, effectively โauto-curriculum learningโ in a closed loop.
- Decoupling of Grounding and Reasoning: The separation of grounding (via document pools) and reasoning target (via dev set influence) affords broad flexibility and domain transfer, evident in the positive (albeit smaller) gains for medical and coding benchmarks, despite the primary focus on science/math.
- Solver-Generator Synergy Over Scale: The finding that a co-evolving generator can outperform far larger but frozen counterparts suggests fundamental limits in the efficacy of static data generation, and calls attention to the importance of solver-informed, adaptive data synthesis.
Theoretically, the adoption of first-order influence-guided curriculum optimization connects self-evolution for LLMs with contemporary meta-learning and dataset distillation paradigms, but at LLM scale and with domain-specific optimization for the RLVR setting.
Future Directions
While INFUSER's design points towards more effective unsupervised or weakly-supervised scaling, several open problems and avenues arise:
- Out-of-Domain Targeting: Extending effective influence-guided self-evolution to domains with minimal alignment between document pools and target dev sets.
- Question Quality and External Auditing: Incorporation of external tools or more sophisticated agentic generator loops to guarantee correctness and pedagogical value of synthesized questions.
- Dynamic Budget Allocation: Optimizing training budget allocation among multiple signal sources (e.g., science self-evolution vs. RLVR) for balanced cross-domain reasoning improvement.
- Scaling Document Pools and Training Horizons: Large-scale empirical studies exploring curriculum emergence with larger, more heterogeneous document corpora and longer co-evolution windows.
Conclusion
INFUSER represents a substantial methodological and empirical advance in self-evolution for LLM reasoning. By formulating curriculum generation as a bilevel game and introducing optimizer-aware influence rewards, INFUSER transforms raw unstructured documents into an adaptive, solver-specific curriculum that reliably and efficiently improves reasoning capability, outperforming state-of-the-art self-evolution and curated-dataset RLVR baselines. This approach promises to make high-level reasoning more accessible in LLMs without prohibitive data curation and to serve as a blueprint for future research in scalable, automated curriculum design for artificial intelligence.