--- license: mit language: - en pretty_name: ARC-Bench size_categories: - n<1K task_categories: - other tags: - autonomous-research - ai-agents - llm-agents - scientific-discovery - benchmark - machine-learning - high-energy-physics - quantum-computing - systems-biology - statistics configs: - config_name: default data_files: - split: test path: data/arc_bench.jsonl - config_name: ml data_files: - split: test path: data/ml.jsonl - config_name: physics data_files: - split: test path: data/physics.jsonl - config_name: quantum data_files: - split: test path: data/quantum.jsonl - config_name: biology data_files: - split: test path: data/biology.jsonl - config_name: statistics data_files: - split: test path: data/statistics.jsonl ---
The benchmark released with AutoResearchClaw: Self-Reinforcing Autonomous Research with Human-AI Collaboration.
--- **ARC-Bench** is a **55-topic, open-ended autonomous-research benchmark** spanning five scientific domains. Each topic is not a fixed-input/fixed-output task — it is a *research question* plus a structured briefing. A research agent (or a human) must take a topic from question → experiment design → code → measurements → claims → write-up, and the deliverable is graded against a weighted, multi-criteria rubric. | Domain | Count | IDs | Typical execution | |---|---|---|---| | Machine learning | 25 | `ML01`–`ML25` | CPU, `numpy`/`scipy`/`sklearn`/`statsmodels` | | High-energy physics | 10 | `P01`–`P10` | Lagrangian → MadGraph MC → analysis → figure (paper reproduction) | | Quantum | 10 | `Q01`–`Q10` | CPU, Qiskit 2.x statevector / VQE / QML | | Systems biology | 7 | `B01`–`B07` | Constraint-based modelling (COBRApy / BiGG) | | Statistics | 3 | `S01`–`S03` | Simulation studies (`numpy`/`scipy`/`statsmodels`) | The ML, quantum, and statistics topics are **open research questions** (the agent designs the experiment); the physics topics are **published-paper reproductions** (each scoped to a specific reference figure); the biology topics are **constraint-based metabolic-modelling** studies. ## Load it ```python from datasets import load_dataset # all 55 topics ds = load_dataset("AIMING-Lab-UNC/ARC-Bench", split="test") # a single domain subset ml = load_dataset("AIMING-Lab-UNC/ARC-Bench", "ml", split="test") row = ds[0] print(row["id"], row["title"]) print(row["metric_key"], row["metric_direction"]) ``` Available config names: `default` (all 55), `ml`, `physics`, `quantum`, `biology`, `statistics`. ## Schema Each row describes one benchmark topic. Deeply-nested / variable-shape fields are stored as **JSON-encoded strings** so the table schema is stable across all domains; parse them with `json.loads`. | Column | Type | Description | |---|---|---| | `id` | string | Topic id (`ML01`, `P03`, `Q07`, `B01`, `S02`, …) | | `domain` | string | One of `ml` / `physics` / `quantum` / `biology` / `statistics` | | `title` | string | Human-readable topic title | | `topic` | string | One-line topic statement (from the domain registry) | | `domains` | list[string] | Subfield tags (e.g. `["machine-learning","calibration"]`) | | `arxiv_id` | string \| null | Source paper (physics reproductions; null for open questions) | | `venue` | string | Benchmark venue label | | `metric_key` | string | Headline metric name | | `metric_direction` | string | `maximize` / `minimize` / `match_reference` | | `gpu_required` | bool | Whether a GPU is needed (all topics are CPU-friendly → `false`) | | `est_wall_clock_sec` | int | Rough single-run wall-clock budget | | `synthesis` | string | The research briefing: background + what a credible study includes | | `num_hypotheses` | int | Number of pre-registered hypotheses | | `hypotheses` | string (JSON) | List of `{id, statement, measurable}` | | `experiment_design` | string (JSON) | `research_question`, `conditions`, `baselines`, `metrics`, `datasets`, `compute_requirements` | | `requirements` | string (JSON) | Agent-mode pass/fail gating items (physics + biology; `""` otherwise) | | `rubric` | string (JSON) | Hierarchical weighted scoring rubric (code / execution / results buckets) | | `rubric_num_leaves` | int | Number of leaf criteria in the rubric | | `manifest_file` | string | Path to the raw manifest inside this repo (`tasks/…`) | | `rubric_file` | string | Path to the raw rubric inside this repo (`tasks/…`) | ### Raw inputs The flattened `data/*.jsonl` is convenient for `load_dataset`. The authoritative, human-readable benchmark inputs are also shipped verbatim under `tasks/`: ``` tasks/ ├── meta_paper_quality.json # shared paper-quality meta-rubric (manual grading) └──Built with 🦞 by the AutoResearchClaw team