A benchmark of 153 research tasks auto-generated from 58 academic papers via Paper2Bench. Each task hands an agent a research question plus the resources the original paper used (models, datasets, budget, constraints) and asks it to design and run its own experiments.
Every row contains:
| field | description |
|---|---|
task_id | unique identifier, e.g. reversal_curse_rq0 |
paper_type | one of llm_evaluation, novel_architecture, empirical_study |
research_question | the question the agent must answer |
instruction | the full prompt shown to the agent (rendered from task_config) |
instruction_gt | ground-truth procedural plan + base instruction (for plan-level evaluation) |
conclusion | ground-truth answer aggregated from the paper's parsed problem tree |
task_config | structured dict: models, datasets, constraints, etc. |
Most datasets in task_config.datasets carry a concrete fetch path:
source: huggingface -- with a verified load_dataset(...) callsource: external -- with a HEAD-validated url (GitHub / project page)source: synthetic -- with generation code in the loader fieldsource: unknown -- locator could not place it; usually paper-internal datafrom datasets import load_dataset
ds = load_dataset("silence-suzuki/FIRE-Bench-unverified", split="train")
for task in ds:
print(task["task_id"], "->", task["research_question"][:80])
# The simplest path: feed the instruction to your agent.
output = my_agent.run(task["instruction"])
# Or pull structured fields:
for d in task["task_config"]["datasets"] or []:
if d["source"] == "huggingface":
print(" load:", d["loader"].splitlines()[-1])
elif d["source"] == "external":
print(" fetch:", d["url"])
The raw per-task files (instruction.txt, instruction_gt.txt,
task_config.yaml) are also available under tasks/<task_id>/ for users
who prefer to walk the filesystem.
Tasks are unverified -- generated end-to-end by an LLM pipeline without human review. Known caveats:
source: unknown; the rest
have a verified loader (HF / synthetic) or HEAD-validated URL (external).For evaluation, the companion repo at maitrix-org/FIRE-Bench hosts the agent runner and scoring code.
Built with Paper2Bench: paper download -> tree parse -> archetype classify -> resource extraction -> HF-loader validation -> HF Hub auto-resolve -> external URL discovery (LLM + HEAD validation) -> render. See the upstream repo for details.
4 commits
A benchmark of 153 research tasks auto-generated from 58 academic papers via Paper2Bench. Each task hands an agent a research question plus the resources the original paper used (models, datasets, budget, constraints) and asks it to design and run its own experiments.
Every row contains:
| field | description |
|---|---|
task_id | unique identifier, e.g. reversal_curse_rq0 |
paper_type | one of llm_evaluation, novel_architecture, empirical_study |
research_question | the question the agent must answer |
instruction | the full prompt shown to the agent (rendered from task_config) |
instruction_gt | ground-truth procedural plan + base instruction (for plan-level evaluation) |
conclusion | ground-truth answer aggregated from the paper's parsed problem tree |
task_config | structured dict: models, datasets, constraints, etc. |
Most datasets in task_config.datasets carry a concrete fetch path:
source: huggingface -- with a verified load_dataset(...) callsource: external -- with a HEAD-validated url (GitHub / project page)source: synthetic -- with generation code in the loader fieldsource: unknown -- locator could not place it; usually paper-internal datafrom datasets import load_dataset
ds = load_dataset("silence-suzuki/FIRE-Bench-unverified", split="train")
for task in ds:
print(task["task_id"], "->", task["research_question"][:80])
# The simplest path: feed the instruction to your agent.
output = my_agent.run(task["instruction"])
# Or pull structured fields:
for d in task["task_config"]["datasets"] or []:
if d["source"] == "huggingface":
print(" load:", d["loader"].splitlines()[-1])
elif d["source"] == "external":
print(" fetch:", d["url"])
The raw per-task files (instruction.txt, instruction_gt.txt,
task_config.yaml) are also available under tasks/<task_id>/ for users
who prefer to walk the filesystem.
Tasks are unverified -- generated end-to-end by an LLM pipeline without human review. Known caveats:
source: unknown; the rest
have a verified loader (HF / synthetic) or HEAD-validated URL (external).For evaluation, the companion repo at maitrix-org/FIRE-Bench hosts the agent runner and scoring code.
Built with Paper2Bench: paper download -> tree parse -> archetype classify -> resource extraction -> HF-loader validation -> HF Hub auto-resolve -> external URL discovery (LLM + HEAD validation) -> render. See the upstream repo for details.
4 commits