Update dataset card with paper link, project page, and benchmark details
Browse filesHi! I'm Niels from the Hugging Face community team.
I've updated the dataset card to include:
- A link to the research paper: [MiroThinker-1.7 & H1: Towards Heavy-Duty Research Agents via Verification](https://huggingface.co/papers/2603.15726).
- Metadata for task categories and languages (English and Chinese).
- A detailed list of the benchmarks included in this suite.
- Clear instructions on how to download and extract the data, including the necessary password from the official repository.
- The BibTeX citation for the work.
Feel free to merge if this looks good!
README.md
CHANGED
|
@@ -1,6 +1,59 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
viewer: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
viewer: false
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- zh
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# MiroFlow Benchmarks
|
| 12 |
+
|
| 13 |
+
This repository contains the benchmarking datasets used for the MiroFlow Framework and the evaluation of the MiroThinker series of research agents.
|
| 14 |
+
|
| 15 |
+
For more details, see the paper [MiroThinker-1.7 & H1: Towards Heavy-Duty Research Agents via Verification](https://huggingface.co/papers/2603.15726).
|
| 16 |
+
|
| 17 |
+
- **Project Page:** [https://dr.miromind.ai](https://dr.miromind.ai)
|
| 18 |
+
- **GitHub Repository:** [https://github.com/MiroMindAI/MiroThinker](https://github.com/MiroMindAI/MiroThinker)
|
| 19 |
+
|
| 20 |
+
## Included Benchmarks
|
| 21 |
+
|
| 22 |
+
The suite provides a comprehensive evaluation for research agents across several domains:
|
| 23 |
+
|
| 24 |
+
- **GAIA (Validation & Text-103):** Benchmarks for General AI Assistants.
|
| 25 |
+
- **HLE (Humanity's Last Exam):** Includes HLE-Text-2158 and HLE-Text-500 subsets for high-level reasoning.
|
| 26 |
+
- **BrowseComp (EN & ZH):** Web browsing and comprehension tasks in English and Chinese.
|
| 27 |
+
- **WebWalkerQA:** Web navigation and question answering.
|
| 28 |
+
- **Frames:** Factuality, Retrieval, And reasoning MEasurement Set.
|
| 29 |
+
- **XBench-DeepSearch:** Evaluation for deep research agents.
|
| 30 |
+
- **FutureX:** A live benchmark for predicting unknown futures.
|
| 31 |
+
- **SEAL-0:** Evaluating LLMs on conflicting-evidence web questions.
|
| 32 |
+
- **AIME2025:** American Invitational Mathematics Examination 2025.
|
| 33 |
+
- **DeepSearchQA:** Google's Deep Search Question Answering benchmark.
|
| 34 |
+
|
| 35 |
+
## Download and Usage
|
| 36 |
+
|
| 37 |
+
The benchmark data is provided as a password-protected zip file. To download and extract the data, use the following commands:
|
| 38 |
+
|
| 39 |
+
```bash
|
| 40 |
+
wget https://huggingface.co/datasets/miromind-ai/MiroFlow-Benchmarks/resolve/main/data_20251115_password_protected.zip
|
| 41 |
+
unzip data_20251115_password_protected.zip
|
| 42 |
+
# Password: pf4*
|
| 43 |
+
rm data_20251115_password_protected.zip
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
For evaluation scripts and agent configurations, please refer to the [MiroThinker GitHub repository](https://github.com/MiroMindAI/MiroThinker).
|
| 47 |
+
|
| 48 |
+
## Citation
|
| 49 |
+
|
| 50 |
+
If you find these benchmarks useful in your research, please consider citing:
|
| 51 |
+
|
| 52 |
+
```bibtex
|
| 53 |
+
@article{miromind2025mirothinker,
|
| 54 |
+
title={MiroThinker-1.7 & H1: Towards Heavy-Duty Research Agents via Verification},
|
| 55 |
+
author={MiroMind Team and Bai, S. and Bing, L. and Lei, L. and Li, R. and Li, X. and Lin, X. and Min, E. and Su, L. and Wang, B. and Wang, L. and Wang, L. and Wang, S. and Wang, X. and Zhang, Y. and Zhang, Z. and others},
|
| 56 |
+
journal={arXiv preprint arXiv:2603.15726},
|
| 57 |
+
year={2026}
|
| 58 |
+
}
|
| 59 |
+
```
|