Create dataset card, add paper and GitHub links

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - other
4
+ language:
5
+ - en
6
+ tags:
7
+ - agent
8
+ - tool-use
9
+ - multi-hop-qa
10
+ ---
11
+
12
+ # DeepSearch-World
13
+
14
+ This repository contains the dataset presented in the paper [DeepSearch-World: Self-Distillation for Deep Search Agents in a Verifiable Environment](https://huggingface.co/papers/2607.07820).
15
+
16
+ [**GitHub Repository**](https://github.com/ornamentt/DeepSearch-World) | [**Environment Artifacts**](https://huggingface.co/datasets/Ornamentt/DeepSearch-World-Env)
17
+
18
+ ## Dataset Description
19
+
20
+ DeepSearch-World contains a 420K multi-hop QA training pool and a verification set (DeepSearch-Val, provided in the `test` split) built from Wikipedia. It is designed to train and evaluate deep search agents that utilize search and page-reading tools to solve complex multi-step reasoning tasks.
21
+
22
+ ## Data Format
23
+
24
+ Each question sample in the dataset contains at least the following fields:
25
+
26
+ ```json
27
+ {
28
+ "id": 0,
29
+ "prompt": "Were Scott Derrickson and Ed Wood of the same nationality?",
30
+ "answers": ["yes"],
31
+ "question": "Were Scott Derrickson and Ed Wood of the same nationality?",
32
+ "answer": "yes"
33
+ }
34
+ ```
35
+
36
+ For scaffold teacher entity tracking, optional fields can be provided:
37
+
38
+ ```json
39
+ {
40
+ "entity_list": ["Entity A", "Entity B"],
41
+ "fuzzed_features": {
42
+ "Entity A exact clue": "fuzzy clue for Entity A"
43
+ }
44
+ }
45
+ ```
46
+
47
+ ## Citation
48
+
49
+ If you find this dataset useful for your research, please cite:
50
+
51
+ ```bibtex
52
+ @misc{geng2026deepsearchworldselfdistillationdeepsearch,
53
+ title={DeepSearch-World: Self-Distillation for Deep Search Agents in a Verifiable Environment},
54
+ author={Xinyu Geng and Xuanhua He and Sixiang Chen and Yanjing Xiao and Fan Zhang and Shijue Huang and Haitao Mi and Zhenwen Liang and Tianqing Fang and Yi R. Fung},
55
+ year={2026},
56
+ eprint={2607.07820},
57
+ archivePrefix={arXiv},
58
+ primaryClass={cs.CL},
59
+ url={https://arxiv.org/abs/2607.07820},
60
+ }
61
+ ```