Improve model card for Qwen-32B-CyberSearcher with paper, code, description, and metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +61 -7
README.md CHANGED
@@ -1,30 +1,63 @@
1
  ---
2
  library_name: transformers
 
 
3
  tags:
4
  - generated_from_trainer
 
 
 
 
5
  model-index:
6
  - name: Qwen-32B-CyberSearcher
7
  results: []
8
  ---
9
 
10
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
11
- should probably proofread and complete it, then remove this comment. -->
12
 
13
- # Qwen-32B-CyberSearcher
14
 
15
- This model was trained from scratch on an unknown dataset.
 
 
 
 
16
 
17
  ## Model description
18
 
19
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  ## Intended uses & limitations
22
 
23
- More information needed
 
 
24
 
25
  ## Training and evaluation data
26
 
27
- More information needed
28
 
29
  ## Training procedure
30
 
@@ -45,3 +78,24 @@ The following hyperparameters were used during training:
45
  - Pytorch 2.5.1+cu124
46
  - Datasets 2.19.0
47
  - Tokenizers 0.20.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  library_name: transformers
3
+ pipeline_tag: text-generation
4
+ license: mit
5
  tags:
6
  - generated_from_trainer
7
+ - deep-search
8
+ - retrieval-augmented-generation
9
+ - web-agent
10
+ - qwen
11
  model-index:
12
  - name: Qwen-32B-CyberSearcher
13
  results: []
14
  ---
15
 
16
+ # Qwen-32B-CyberSearcher: Deep Information Seeking via Web-Powered Reasoning Trajectory Synthesis
 
17
 
18
+ This model is a 32B parameter variant part of the **SimpleDeepSearcher** framework, presented in the paper [SimpleDeepSearcher: Deep Information Seeking via Web-Powered Reasoning Trajectory Synthesis](https://huggingface.co/papers/2505.16834).
19
 
20
+ Code: [https://github.com/RUCAIBox/SimpleDeepSearcher](https://github.com/RUCAIBox/SimpleDeepSearcher)
21
+
22
+ <p align="center">
23
+ <img src="https://github.com/RUCAIBox/SimpleDeepSearcher/raw/main/assets/simplelog.jpg" alt="SimpleDeepSearcher Logo" width="550"/>
24
+ </p>
25
 
26
  ## Model description
27
 
28
+ SimpleDeepSearcher is a lightweight yet effective framework for enhancing Large Language Models (LLMs) in complex deep search scenarios that require multi-step reasoning and iterative information retrieval. It addresses critical limitations of existing Retrieval-Augmented Generation (RAG) systems by strategically synthesizing high-quality training data from realistic user interactions in live web search environments, coupled with a multi-criteria curation strategy. This approach enables efficient supervised fine-tuning (SFT) with only a small amount of curated data, establishing SFT as a viable pathway for building efficient deep search systems with reduced computational cost and development complexity.
29
+
30
+ ### Key Contributions
31
+
32
+ - A real web-based data synthesis framework that simulates realistic user search behaviors, generating multi-turn reasoning and search trajectories.
33
+ - A multi-criteria data curation strategy that jointly optimizes both input question selection and output response filtering through orthogonal filtering dimensions.
34
+ - Experimental results demonstrate that SFT on only 871 curated samples enables SimpleDeepSearcher to outperform strong baselines (especially RL-based baselines) on both in-domain and out-of-domain benchmarks.
35
+
36
+ ## Framework Overview
37
+
38
+ SimpleDeepSearcher achieves intelligent search through efficient supervised fine-tuning (SFT) using minimal, high-quality training data constructed via a systematic data synthesis and curation pipeline.
39
+
40
+ <p align="center">
41
+ <img src="https://github.com/RUCAIBox/SimpleDeepSearcher/raw/main/assets/pipeline.png" alt="SimpleDeepSearcher Pipeline" width="800"/>
42
+ </p>
43
+
44
+ ## Overall Performance
45
+
46
+ SimpleDeepSearcher consistently outperforms all baselines across five benchmark datasets, including both in-domain (2Wiki, MuSiQue) and out-of-domain (Bamboogle, FRAMES, GAIA) settings, demonstrating strong generalization and high data efficiency.
47
+
48
+ <p align="center">
49
+ <img src="https://github.com/RUCAIBox/SimpleDeepSearcher/raw/main/assets/overall_performance.png" alt="Overall Performance" width="800"/>
50
+ </p>
51
 
52
  ## Intended uses & limitations
53
 
54
+ This model is intended for advanced deep search scenarios where large language models need to perform multi-step reasoning and iterative information retrieval through web searches. It can be utilized as a core component for building efficient and effective deep search systems.
55
+
56
+ Limitations may include dependency on the quality of synthesized training data and the performance of the underlying web search API.
57
 
58
  ## Training and evaluation data
59
 
60
+ The model was fine-tuned via Supervised Fine-tuning (SFT) on only 871 curated samples. This high-quality training data was synthesized by simulating realistic user interactions in live web search environments, followed by a multi-criteria curation strategy that optimized the diversity and quality of input and output.
61
 
62
  ## Training procedure
63
 
 
78
  - Pytorch 2.5.1+cu124
79
  - Datasets 2.19.0
80
  - Tokenizers 0.20.3
81
+
82
+ ## Citation
83
+
84
+ Please kindly cite our report if they are helpful for your research:
85
+
86
+ ```bibtex
87
+ @article{sun2025simpledeepsearcher,
88
+ title={SimpleDeepSearcher: Deep Information Seeking via Web-Powered Reasoning Trajectory Synthesis},
89
+ author={Sun, Shuang and Song, Huatong and Wang, Yuhao and Ren, Ruiyang and Jiang, Jinhao and Zhang, Junjie and Bai, Fei and Deng, Jia and Zhao, Wayne Xin and Liu, Zheng and others},
90
+ journal={arXiv preprint arXiv:2505.16834},
91
+ year={2025}
92
+ }
93
+ ```
94
+
95
+ ## License
96
+
97
+ This project is released under the [MIT License](https://github.com/RUCAIBox/SimpleDeepSearcher/blob/main/LICENSE).
98
+
99
+ ## Contact
100
+
101
+ For any questions or feedback, please reach out to us at [sunshuanguns@gmail.com](mailto:sunshuanguns@gmail.com) or [songhuatong123@ruc.edu.cn](mailto:songhuatong123@ruc.edu.cn).