IPF commited on
Commit
ee37b6d
·
verified ·
1 Parent(s): ff20471

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path: data/train-*
7
+ dataset_info:
8
+ features:
9
+ - name: query_id
10
+ dtype: int64
11
+ - name: query
12
+ dtype: string
13
+ - name: answer
14
+ dtype: string
15
+ - name: gold_docs
16
+ list:
17
+ - name: position
18
+ dtype: int64
19
+ - name: text
20
+ dtype: string
21
+ - name: url
22
+ dtype: string
23
+ - name: pass_rate
24
+ dtype: float64
25
+ splits:
26
+ - name: train
27
+ num_examples: 6102
28
+ license: mit
29
+ ---
30
+ <div style="display: flex; align-items: center; justify-content: center; gap: 8px;">
31
+ <img src="imgs/or-logo1.png" style="height: 84px; width: auto;">
32
+ <img src="imgs/openresearcher-title.svg" style="height: 84px; width: auto;">
33
+ </div>
34
+
35
+
36
+ <div align="center">
37
+ <a href="https://arxiv.org/abs/2603.20278"><img src="https://img.shields.io/badge/arXiv-B31B1B?style=for-the-badge&logo=arXiv&logoColor=white" alt="Blog"></a>
38
+ <a href="https://huggingface.co/papers/2603.20278"><img src="https://img.shields.io/badge/Paper-FFD966?style=for-the-badge&logo=huggingface&logoColor=ffffff" alt="Model"></a>
39
+ <a href="https://github.com/TIGER-AI-Lab/OpenResearcher"><img src="https://img.shields.io/badge/Github-181717?style=for-the-badge&logo=github&logoColor=white" alt="Blog"></a>
40
+ <a href="https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Dataset"><img src="https://img.shields.io/badge/Dataset-FFB7B2?style=for-the-badge&logo=huggingface&logoColor=ffffff" alt="Dataset"></a>
41
+ <a href="https://huggingface.co/OpenResearcher/Nemotron-3-Nano-30B-A3B"><img src="https://img.shields.io/badge/Model-FFD966?style=for-the-badge&logo=huggingface&logoColor=ffffff" alt="Model"></a>
42
+ <a href="https://huggingface.co/spaces/OpenResearcher/OpenResearcher"><img src="https://img.shields.io/badge/Demo-F97316.svg?style=for-the-badge&logo=gradio&logoColor=white" alt="Demo"></a>
43
+ <a href="https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Eval-Logs/tree/main"><img src="https://img.shields.io/badge/Eval%20Logs-755BB4?style=for-the-badge&logo=google-sheets&logoColor=white" alt="Eval Logs"></a>
44
+ </div>
45
+
46
+ ## OpenResearcher Gold Documents
47
+
48
+ This dataset contains the **gold documents** used for the "Gold Document Retrieval via Online Bootstrapping" step described in Section 3.2 of the [OpenResearcher paper](https://arxiv.org/abs/2603.20278). Gold documents are documents that collectively contain sufficient evidence to derive the ground-truth answer for a given question.
49
+
50
+ For **6,102** questions sourced from [MiroVerse](https://huggingface.co/datasets/miromind-ai/MiroVerse-v0.1), we constructed a search query by concatenating the question and reference answer, retrieved web content via the Serper API, and cleaned/deduplicated the results to obtain **~10K gold documents** (1–3 gold documents per question, averaging 2.86).
51
+
52
+ These gold documents are merged with 15M FineWeb documents (as distractors) to build the offline search corpus, [OpenResearcher-Corpus](https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Corpus), which is used as a self-hosted, API-free search engine when synthesizing the deep-research trajectories released as [OpenResearcher-Dataset](https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Dataset). This bootstrapping step is essential: removing it causes gold-document hit rate to drop from 29.54% to 1.73%, trajectory accuracy to drop from 56.86% to 43.81%, and downstream BrowseComp-Plus accuracy to collapse from 54.81% to 6.35% (see RQ2 in the paper).
53
+
54
+ ## Format
55
+
56
+ Each row in the dataset contains the following fields:
57
+ - **query_id** (int64): A unique identifier for each question.
58
+ - **query** (string): The original question, sourced from [MiroVerse](https://huggingface.co/datasets/miromind-ai/MiroVerse-v0.1).
59
+ - **answer** (string): The reference answer used to construct the retrieval query.
60
+ - **gold_docs** (list): The gold documents retrieved and cleaned for this question. Each entry contains:
61
+ - **position** (int64): Rank position among the retrieved gold documents.
62
+ - **text** (string): The full text content of the gold document.
63
+ - **url** (string): The source URL where the document was retrieved from.
64
+ - **pass_rate** (float64): The pass rate observed for this question during trajectory synthesis with GPT-OSS-120B.
65
+
66
+ ## How to use this dataset?
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+
71
+ ds = load_dataset("OpenResearcher/OpenResearcher-Corpus-Gold-Doc", split="train")
72
+ row = ds[0]
73
+ print(row["query"])
74
+ print(row["answer"])
75
+ for doc in row["gold_docs"]:
76
+ print(doc["url"], doc["text"][:200])
77
+ ```
78
+
79
+ ## Related Resources
80
+
81
+ - Paper: [OpenResearcher: A Fully Open Pipeline for Long-Horizon Deep Research Trajectory Synthesis](https://arxiv.org/abs/2603.20278)
82
+ - Offline search corpus (gold docs + FineWeb distractors, embedded and indexed): [OpenResearcher/OpenResearcher-Corpus](https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Corpus)
83
+ - Synthesized training trajectories: [OpenResearcher/OpenResearcher-Dataset](https://huggingface.co/datasets/OpenResearcher/OpenResearcher-Dataset)
84
+ - Code: [TIGER-AI-Lab/OpenResearcher](https://github.com/TIGER-AI-Lab/OpenResearcher)
85
+
86
+ ## Citation
87
+
88
+ ```bibtex
89
+ @article{li2026openresearcher,
90
+ title={{OpenResearcher: A Fully Open Pipeline for Long-Horizon Deep Research Trajectory Synthesis}},
91
+ author={Li, Zhuofeng and Jiang, Dongfu and Ma, Xueguang and Zhang, Haoxiang and Nie, Ping and Zhang, Yuyu and Zou, Kai and Xie, Jianwen and Zhang, Yu and Chen, Wenhu},
92
+ journal={arXiv preprint arXiv:2603.20278},
93
+ year={2026}
94
+ }
95
+ ```