Summary (Overview)

  • ScientistTwo is a fully autonomous multi-agent framework for problem-driven scientific discovery that takes a research problem as input and produces publication-quality papers with verified, executable codebases—without human intervention.
  • The framework outperforms human state-of-the-art baselines on 86 out of 107 problems (80.4% success rate) with an average relative improvement of 25.2%, across diverse domains including LLMs, robotics, neuroscience, speech, robustness, RL, game theory, privacy, optimization, and time series.
  • ScientistTwo achieves a 91.9% acceptance rate under ScholarPeer and 72.1% under the held-out Stanford Agentic Reviewer—the only autonomous agent to produce papers meeting top-tier venue acceptance standards.
  • The system integrates holistic benchmark evaluation, ablation-driven hypothesis refinement, and a closed-loop simulated peer-review/rebuttal engine, emulating the empirical rigor of expert human researchers.
  • Human expert evaluation shows ScientistTwo papers achieve parity with human-authored papers overall, with a slight human advantage in methodological rigor but a ScientistTwo advantage in experimental execution and benchmark breadth.

Introduction and Theoretical Foundation

Scientific discovery is defined by the ability to identify boundaries of existing knowledge and venture into unexplored territory. The paper's vision is problem-driven autonomous research: given a fundamental challenge by a human expert, an AI independently navigates the scientific landscape, uncovers bottlenecks, and systematically expands the frontier of knowledge.

Key Gaps in Existing Systems

The authors identify critical shortcomings in prior autonomous research agents:

  • Single-metric optimization: Existing systems focus on optimizing single-scalar metrics on isolated benchmarks, lacking multi-dimensional reasoning for complex problems.
  • No closed-loop empirical rigor: Current agents cannot systematically conduct ablation studies to isolate causal mechanisms, nor engage in dynamic peer-review processes for validating ideas.
  • No rebuttal capability: Agents cannot address methodological critiques through targeted supplementary experiments.

Formal Problem Setup

The paper formalizes the goal as building an autonomous research agent A\mathcal{A} that, given a scientific problem G\mathcal{G}, generates a paper P+\mathcal{P}^+ paired with a reproducible codebase C+\mathcal{C}^+:

(P+,C+)=A(G),whereA={A1,A2,,ANa}(1)(\mathcal{P}^+, \mathcal{C}^+) = \mathcal{A}(\mathcal{G}), \quad \text{where} \quad \mathcal{A} = \{\mathcal{A}_1, \mathcal{A}_2, \dots, \mathcal{A}_{N_{\mathrm{a}}}\} \tag{1}

where A\mathcal{A} comprises NaN_{\mathrm{a}} specialized AI agents, each assigned to distinct phases of the research lifecycle (limitation extraction, idea generation, code modification, empirical validation, etc.). The paper P+\mathcal{P}^+ must identify and resolve key bottlenecks in G\mathcal{G}, and C+\mathcal{C}^+ must correctly implement the idea while maintaining reproducibility and demonstrating measurable gains.


Methodology

ScientistTwo orchestrates a collaborative ecosystem of specialized agents through a six-stage pipeline (see Table 1 for the full stage/candidate/critic/refine mapping):

Stage 1: Generating Novel Seed Ideas (§ 3.1)

  • A Limitation Extractor identifies core limitations of the human SOTA method; a Limitation Verifier checks sufficiency, triggering expansion loops.
  • An Idea Generator iteratively expands the candidate pool H0\mathcal{H}_0 with novel ideas, sorted by novelty scores {si}\{s_i\} in descending order (sisjs_i \geq s_j for i<ji < j).

Stage 2: Evaluating Ideas (§ 3.2)

  • Subset-first strategy: Ideas are tested on benchmark subsets before full-scale compute is allocated.
  • A Baseline Coding Agent reproduces primary experiments on the subset, producing baseline results Ebase\mathcal{E}_{\text{base}} and codebase CbaseC_{\text{base}}.
  • A Subset Critic Agent emits categorical decisions: Bad (discard), Good (scale up), or Engineer (refine via hyperparameter tuning).
  • Ideas validated as Good are scaled to full benchmarks via Full-Set Coding/Engineering Agents.
  • The entire pipeline is abstracted into a unified Idea Implementer Agent:
h,Eh,Ch,dh,rh=ACoder(G,h)(2)h, \mathcal{E}^{h}, \mathcal{C}^{h}, d^{h}, r^{h} = \mathcal{A}_{\mathrm{Coder}}(\mathcal{G}, h) \tag{2}

Stage 3: Refining Ideas (§ 3.3)

  • An Idea Evolver Agent analyzes execution traces (both successes and failures) to propose refined hypotheses.
  • Exploration-Exploitation balance: The candidate pool Hk\mathcal{H}_k combines evolved ideas Tk\mathcal{T}_k with previously unevaluated seed ideas H0(k)\mathcal{H}_0^{(k)}.
  • The evolutionary loop iterates until SS successful ideas are collected or the maximum refinement limit KK is reached:
Rk={(h,Eh,Ch,dh,rh)h,Eh,Ch,dh,rh=ACoder(G,h),hHk}(3)\mathcal{R}_k = \left\{\left(h, \mathcal{E}^{h}, \mathcal{C}^{h}, d^{h}, r^{h}\right) \Bigg| h, \mathcal{E}^{h}, \mathcal{C}^{h}, d^{h}, r^{h} = \mathcal{A}_{\mathrm{Coder}}(\mathcal{G}, h), h \in \mathcal{H}_k \right\} \tag{3}
  • A Selector Agent picks the best candidate:
hbest,Ebest,Cbest=ASelector(G,{(h,Eh,Ch)dh=Good})(4)h_{\text{best}}, \mathcal{E}_{\text{best}}, \mathcal{C}_{\text{best}} = \mathcal{A}_{\text{Selector}}\left(\mathcal{G}, \left\{(h, \mathcal{E}^{h}, \mathcal{C}^{h}) \mid d^{h} = \text{Good}\right\}\right) \tag{4}

Stage 4: Ablation Studies (§ 3.4)

  • An Ablation Planner formulates NpN_p executable ablation plans; an Ablation Coding Agent executes them.
  • An Ablation Critic inspects component breakdowns, emitting Good or Refine decisions.
  • Iterative refinement loops with strict verification: baseline variables update only if new results strictly outperform the best.

Stage 5: Manuscript Drafting (§ 3.5)

  • An Initial Drafter synthesizes the idea, results, and ablations into a conference-formatted manuscript.
  • A Peer-Reviewer Agent (ScholarPeer) evaluates the draft with a score sreview[1,10]s_{\text{review}} \in [1, 10] on the ICLR scale.
  • If below the acceptance threshold (e.g., 8), a Rebuttal Planner formulates supplementary experiments, a Rebuttal Coding Agent executes them, and a Paper Enhancer integrates findings.
  • The review-rebuttal cycle repeats until snew8s_{\text{new}} \geq 8 or the budget NpeerN_{\text{peer}} is exhausted.

Stage 6: Meta-Reviewing (§ 3.6)

  • A Meta-Review Agent makes a final publication assessment (dmeta{Accept,Refine}d_{\text{meta}} \in \{\text{Accept}, \text{Refine}\}).
  • If Refine, the Full-Set Engineering Agent updates the hypothesis; results are verified against the baseline before re-drafting and re-reviewing.
  • The loop repeats for a maximum of NmetaN_{\text{meta}} iterations or until acceptance.

Python-Style Pseudocode

def stage(candidate, critic, refine, max_rounds):
    for _ in range(max_rounds):
        verdict, feedback = critic(candidate)
        if verdict == "accept":
            return candidate
        elif verdict == "refine":
            candidate = refine(candidate, feedback)
        else:
            return None
    return None

Empirical Validation / Results

Main Results vs. Autonomous Research Agents

Table 2 shows ScientistTwo dramatically outperforms all prior agents:

Framework# PapersScholarPeer Avg.ScholarPeer Accept %Stanford Avg.Stanford Accept %
AI-Researcher71.0±0.01.0 \pm 0.00.02.4±0.62.4 \pm 0.60.0
CycleResearcher61.0±0.01.0 \pm 0.00.02.8±1.02.8 \pm 1.00.0
AI Scientist-v232.0±1.02.0 \pm 1.00.02.5±0.22.5 \pm 0.20.0
AutoResearchClaw42.5±1.02.5 \pm 1.00.03.7±0.53.7 \pm 0.50.0
Zochi23.0±0.03.0 \pm 0.00.02.9±0.62.9 \pm 0.60.0
DeepScientist33.0±0.03.0 \pm 0.00.04.1±0.64.1 \pm 0.60.0
ScientistOne213.8±1.23.8 \pm 1.214.34.1±0.74.1 \pm 0.70.0
ScientistTwo (Ours)867.5±1.37.5 \pm 1.391.95.7±0.65.7 \pm 0.672.1

Comparison with Human-Authored Papers

Table 3 shows ScientistTwo surpasses average scores of accepted papers at ICLR 2026 and NeurIPS 2025:

Venue# PapersScholarPeer Avg.ScholarPeer Accept %Stanford Avg.Stanford Accept %
Agent4Science 2025 Accepted†43.0±0.00.03.8±0.40.0
ICLR 2026 Accepted56.8±1.660.05.2±0.760.0
NeurIPS 2025 Accepted386.2±1.965.85.5±0.776.3
ICML 2026 Spotlight646.9±1.579.76.1±0.596.9
ScientistTwo ICLR 2026†4/57.0±1.2100.05.4±0.275.0
ScientistTwo NeurIPS 2025†33/387.3±1.787.95.6±0.775.8
ScientistTwo ICML 2026†49/647.6±1.093.95.7±0.669.4
ScientistTwo Overall†86/1077.5±1.391.95.7±0.672.1

Comparison with AutoSOTA

Table 4 shows ScientistTwo achieves higher average gains (25.2% vs. 7.5%) because it proposes novel methodological innovations rather than searching hyperparameter spaces.

Ablation Studies

  1. Idea Evolution (Figure 9a): Relative gains are largest in early refinement rounds and diminish later.
  2. Exploration-Exploitation (Figure 9b): Evolved ideas dominate selections in later rounds, confirming the value of the evolution strategy.
  3. Rebuttal Agent (Table 5): The peer-review simulation improves acceptance rates from 46.9% to 93.9% (ScholarPeer) and 49.0% to 69.4% (Stanford) after two review rounds.
  4. Review-Driven Idea Refinement (Table 6): Meta-review refinement improved a method from LFR-Engram (0.897 overall score) to FCD-Engram (0.916), demonstrating that review feedback drives better ideas.

Integrity Audit

ScientistTwo passes all four CoE Integrity Audit dimensions (score verification, specification compliance, reference verification, method-code alignment) on 49/49 papers. Removing the refinement agents causes sporadic failures (e.g., 19/1840 hallucinated references).

Cost Analysis

  • 2.5 days average per task (vs. months for human researchers).
  • ~$3,765 average cost per task (token usage + VM costs).
  • Idea refinement, dynamic peer-review, and meta-review consume the majority of time.

Iterative Frontier Expansion

Table 9 demonstrates compounding discovery: ScientistTwo sequentially improves its own solutions (10.9% → 9.6% → 8.2% relative gains across three iterations).

Human Evaluation

Table 10 shows positive endorsements across all dimensions (standalone scores 3.7–4.3 on a 1–5 scale), with parity overall and a ScientistTwo advantage in experimental execution.

Case Study: DynaSpec-RAG

ScientistTwo developed DynaSpec-RAG, a lightweight framework for zero-shot time series forecasting that:

  • Resolves boundary jumps by anchoring retrieved curves to the final known observation
  • Uses real-FFT Fourier decomposition to separate macro-trends from seasonal details
  • Deploys a fine-grained gating network with per-frequency-band trust evaluation
  • Includes a validation safety switch that dials retrieval influence to zero when unhelpful

It introduces only 0.27M trainable parameters while consistently surpassing strong baselines (see Table 11), demonstrating that the agent identifies root failure modes and invests mathematically sound, parameter-efficient solutions.


Theoretical and Practical Implications

Theoretical Significance

  • Problem-driven autonomy: ScientistTwo demonstrates that AI can move beyond passive problem-solving to actively identify bottlenecks, formulate hypotheses, and execute end-to-end discovery cycles.
  • Closed-loop rigor: The integration of ablation studies, peer-review simulation, and rebuttal-driven refinement emulates the falsification-based methodology of expert human researchers.
  • Compounding discovery: The iterative frontier expansion demonstrates that AI can use its own discoveries as priors for further advancement, suggesting a path toward accelerating scientific progress.

Practical Implications

  • Acceleration of research: 2.5 days per task vs. months for human researchers represents a dramatic acceleration of the research cycle.
  • Publication-grade output: Papers meet top-tier venue acceptance thresholds and pass rigorous integrity audits, making them verifiable and reproducible.
  • Cost considerations: At ~$3,800 per task, current costs may limit adoption by academic labs; replacing proprietary models with open-source alternatives is a promising direction.

Conclusion

ScientistTwo is an autonomous multi-agent framework that advances the frontier of scientific discovery without human intervention. By coupling holistic benchmark evaluation, ablation-driven hypothesis refinement, and a closed-loop peer-review/rebuttal engine, it emulates the empirical rigor of expert human researchers. Across 107 competitive research challenges from ICLR, ICML, and NeurIPS, it advanced 80.4% of target problems with 25.2% average relative improvement over human SOTA baselines, producing manuscripts that meet top-tier acceptance thresholds and pass rigorous integrity audits.

Limitations and Future Directions

  • ScientistTwo does not yet consistently achieve spotlight/oral-level quality that introduces paradigm-shifting conceptual breakthroughs.
  • Future work will focus on expanding multi-agent exploration beyond local algorithmic refinements toward fundamentally new theoretical formulations.
  • The ~$3,800 cost per task is a limiting factor; improving cost-efficiency (e.g., via open-source models) is an important direction for broader accessibility.

Related papers