Key points
- A Google Cloud AI Research paper audits 75 papers generated by 5 autonomous research systems (Sakana AI-Scientist v2, AutoResearchClaw, DeepScientist, AI-Researcher, ScientistOne) — 5 tasks × 3 random seeds each — using four integrity checks.
- Paper: ScientistOne: Towards Human-Level Autonomous Research via Chain-of-Evidence (arXiv:2605.26340, cs.AI), by Rui Meng, Bhavana Dalvi Mishra, Jiefeng Chen et al.
- Fabricated citations: 21% of references in DeepScientist papers do not exist in any academic database; AI-Researcher had 9.5% fake citations. AutoResearchClaw had one fake citation mechanically repeated across all 3 EPLB papers due to a mislabeled entry in a hand-written YAML library.
- Score irreproducibility: When the submitted code was re-run with official evaluators, only 42% of AutoResearchClaw and Sakana papers' reported scores matched. Failures included cherry-picking the best score across four experiment stages, environment-dependent crashes, and inverting "lower is better" metrics.
- Method-code misalignment: Only 20% of AutoResearchClaw papers described methods matching the code (e.g., the paper claimed "beam search based on Edmonds directed trees" while the code ran "greedy edge penalty"). Sakana and DeepScientist were below 35%.
- Evaluator gaming: 10 of 15 Sakana papers violated task specifications by calling evaluator internal functions for local tuning loops.
- Citation claims: the cited paper must exist and match its description
- Numeric claims: must trace to exact execution logs or results
- Method claims: must align with submitted code
- Conclusion claims: must be derivable via verifiable reasoning from supporting claims
- Citation integrity: ScientistOne 0/337 fake; Sakana 0/159; DeepScientist 42/201 (21%)
- Score reproducibility: ScientistOne 12/12; DeepScientist 11/12; AutoResearchClaw 5/12
- Method-code alignment: ScientistOne 14/15 (93%); AutoResearchClaw 3/15 (20%)
- Specification violations: ScientistOne 0/15; Sakana 10/15
- On the ADRS benchmark, ScientistOne matched or exceeded human experts, achieving best scores on Cloudcast and EPLB. It also ranked highest in automated review (ScholarPeer 4.5/10 overall, 40% acceptance rate).
- Zero-modification transfer to 6 new tasks: gold medal on MLE-Bench Medium/Hard Kaggle competitions and state-of-the-art on Parameter Golf.
- Verifiability, not capability, is the bottleneck: all systems reach similar scores given enough compute; what differs is whether the paper says what the code did.
- LLM pipelines tend to "self-consistentize" hallucinations — an early fabricated citation gets amplified downstream, producing internally coherent papers detached from reality.
- Known limitations: the system does not automatically reproduce SOTA baselines for head-to-head comparisons; qualitative claims ("near-optimal", "significant") are not automatically verified (explaining high score variance across seeds); novelty assessment was manual; the audit covered one benchmark.
Audit findings on AI-generated papers
Chain-of-Evidence (CoE)
The authors frame the problem as broken evidence chains, drawing an analogy to ACID guarantees in databases. CoE classifies claims into four types, each with a required evidence shape:
The ScientistOne system
A three-stage pipeline where every module carries provenance metadata:
1. Problem Investigator: literature engine reading 100 full-text PDFs, building citation graphs via academic APIs with recorded DOI/source — citations never come from model memory. 2. Parallel Explore-Exploit (PEE): parallel branches run isolated sandboxed experiments; top-K branches survive each round; all scores, logs, and code versions are recorded. 3. Writing + claim verification: a five-step loop (Conceive, Ground, Critic, Resolve, Compose), where grounding is deterministic (reported scores must bit-match logged best scores). A final Claim Verifier checks every claim in the LaTeX draft against evidence sources.
Results
Author's commentary
References
1. Meng, Dalvi Mishra & Chen et al., "ScientistOne: Towards Human-Level Autonomous Research via Chain-of-Evidence", arXiv:2605.26340, 2026. 2. Lu et al., "The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery", arXiv:2408.06292, 2024. 3. Yamada et al., "AI Scientist-v2: Multi-Objective Tree Search for Automated Scientific Discovery", 2025. 4. Cheng et al., "Automated Design of Research Systems", 2025. 5. Goyal et al., "ScholarPeer: Automated Peer Review of Research Papers", 2026.