silence-suzuki/FIRE-Bench-verified

Dataset

0

stars

5

commits

1

linked in READMEs

Apr 28, 2026

updated

agent-evaluation
benchmark
llm-agents
research-tasks
verified

README

FIRE-Bench (verified)

A benchmark of 35 hand-curated research tasks from the FIRE-Bench project. Unlike the auto-generated companion dataset silence-suzuki/FIRE-Bench-unverified, these have been written and reviewed manually -- prompts, ground-truth plans, and conclusions are all human-validated.

Schema

fielddescription
task_idunique identifier (e.g. activation_control)
research_questionthe question the agent must answer
instructionfull prompt the agent sees (research question + resources)
instruction_gtground-truth procedural plan (used for evaluation, not shown to the agent)
conclusionground-truth answer; what the agent's final write-up is compared against
dataset_sourceupstream URL or short note for the data, when the curators left one
has_local_datatrue when raw data files are bundled at tasks/<task_id>/data/ in this repo

Usage

from datasets import load_dataset
ds = load_dataset("silence-suzuki/FIRE-Bench-verified", split="train")

for task in ds:
    output = my_agent.run(task["instruction"])
    # evaluate output against task["conclusion"]

The raw per-task files (instruction.txt, instruction_gt.txt, conclusion.txt) are also available under tasks/<task_id>/ for filesystem-walking workflows. For tasks where the curators bundled local data, tasks/<task_id>/data/ holds the dataset files (JSONL, JSON, images, etc.) and tasks/<task_id>/dataset.txt documents the source.

To pull just the assets for one task:

from huggingface_hub import snapshot_download
snapshot_download(
    "silence-suzuki/FIRE-Bench-verified",
    repo_type="dataset",
    allow_patterns=["tasks/lost_in_the_middle/*", "tasks/lost_in_the_middle/**"],
)

For the runner / scoring code see maitrix-org/FIRE-Bench.

Contributors

silence-suzuki/FIRE-Bench-verified

Dataset

0

stars

5

commits

1

linked in READMEs

Apr 28, 2026

updated

agent-evaluation
benchmark
llm-agents
research-tasks
verified

README

FIRE-Bench (verified)

A benchmark of 35 hand-curated research tasks from the FIRE-Bench project. Unlike the auto-generated companion dataset silence-suzuki/FIRE-Bench-unverified, these have been written and reviewed manually -- prompts, ground-truth plans, and conclusions are all human-validated.

Schema

fielddescription
task_idunique identifier (e.g. activation_control)
research_questionthe question the agent must answer
instructionfull prompt the agent sees (research question + resources)
instruction_gtground-truth procedural plan (used for evaluation, not shown to the agent)
conclusionground-truth answer; what the agent's final write-up is compared against
dataset_sourceupstream URL or short note for the data, when the curators left one
has_local_datatrue when raw data files are bundled at tasks/<task_id>/data/ in this repo

Usage

from datasets import load_dataset
ds = load_dataset("silence-suzuki/FIRE-Bench-verified", split="train")

for task in ds:
    output = my_agent.run(task["instruction"])
    # evaluate output against task["conclusion"]

The raw per-task files (instruction.txt, instruction_gt.txt, conclusion.txt) are also available under tasks/<task_id>/ for filesystem-walking workflows. For tasks where the curators bundled local data, tasks/<task_id>/data/ holds the dataset files (JSONL, JSON, images, etc.) and tasks/<task_id>/dataset.txt documents the source.

To pull just the assets for one task:

from huggingface_hub import snapshot_download
snapshot_download(
    "silence-suzuki/FIRE-Bench-verified",
    repo_type="dataset",
    allow_patterns=["tasks/lost_in_the_middle/*", "tasks/lost_in_the_middle/**"],
)

For the runner / scoring code see maitrix-org/FIRE-Bench.

Contributors