Improve model card for WebSailor

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +45 -2
README.md CHANGED
@@ -1,6 +1,49 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
4
- 🚀🚀🚀coming soon
5
 
6
- More details are presented in https://github.com/Alibaba-NLP/WebAgent
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: image-text-to-text
4
+ library_name: transformers
5
  ---
 
6
 
7
+ # WebSailor: Navigating Super-human Reasoning for Web Agent
8
+
9
+ This repository contains **WebSailor**, a model introduced in the paper [WebSailor: Navigating Super-human Reasoning for Web Agent](https://huggingface.co/papers/2507.02592).
10
+
11
+ **WebSailor** is a complete post-training methodology designed to instill crucial superhuman reasoning capabilities in LLMs, specifically for navigating vast information landscapes and solving extremely complex information-seeking tasks. Its success stems from a sophisticated reasoning pattern that systematically reduces extreme uncertainty. The approach involves generating novel, high-uncertainty tasks through structured sampling and information obfuscation, RFT cold start, and an efficient agentic RL training algorithm, Duplicating Sampling Policy Optimization (DUPO). This integrated pipeline allows WebSailor to significantly outperform all open-source agents in complex information-seeking tasks, matching proprietary agents' performance and closing the capability gap.
12
+
13
+ For more details, code, and demos, please refer to the [official GitHub repository](https://github.com/Alibaba-NLP/WebAgent).
14
+
15
+ ## Features for WebSailor
16
+
17
+ WebSailor is designed with the following key features:
18
+
19
+ * A complete post-training methodology enabling models to engage in extended thinking and information seeking, ultimately allowing them to successfully complete extremely complex tasks previously considered unsolvable.
20
+ * Introduces **SailorFog-QA**, a scalable QA benchmark with high uncertainty and difficulty, curated with a novel data synthesis method through graph sampling and information obfuscation.
21
+ * Effective post-training pipeline consisting of (1) high-quality reconstruction of concise reasoning from expert trajectories for clean supervision, (2) a two-stage training process involving an RFT cold start stage, followed by **Duplicating Sampling Policy Optimization (DUPO)**, an efficient agentic RL algorithm excelling in effectiveness and efficiency.
22
+
23
+ ## Performance
24
+
25
+ WebSailor-72B significantly outperforms all open-source agents and frameworks while closing the performance gap with leading proprietary systems, achieving a score of **12.0%** on BrowseComp-en, **30.1%** on BrowseComp-zh, and **55.4%** on GAIA.
26
+
27
+ ## Usage
28
+
29
+ The checkpoint for WebSailor is currently listed as "coming soon" in the main repository. Once released, detailed usage examples and instructions will be provided here and on the [GitHub repository](https://github.com/Alibaba-NLP/WebAgent).
30
+
31
+ ## Demos
32
+
33
+ WebSailor provides compelling video demonstrations for BrowseComp-en, BrowseComp-zh, and Daily Use scenarios, showcasing its ability to complete highly difficult and uncertain tasks requiring massive information acquisition and complex reasoning. These demos are available on the [project's GitHub repository](https://github.com/Alibaba-NLP/WebAgent#%EF%B8%8F-websailor-demos).
34
+
35
+ ## Citation
36
+
37
+ If this work is helpful, please kindly cite as:
38
+
39
+ ```bibtex
40
+ @misc{li2025websailor,
41
+ title={WebSailor: Navigating Super-human Reasoning for Web Agent},
42
+ author={Kuan Li and Zhongwang Zhang and Huifeng Yin and Liwen Zhang and Litu Ou and Jialong Wu and Wenbiao Yin and Baixuan Li and Zhengwei Tao and Xinyu Wang and Weizhou Shen and Junkai Zhang and Dingchu Zhang and Xixi Wu and Yong Jiang and Ming Yan and Pengjun Xie and Fei Huang and Jingren Zhou},
43
+ year={2025},
44
+ eprint={2507.02592},
45
+ archivePrefix={arXiv},
46
+ primaryClass={cs.CL},
47
+ url={https://arxiv.org/abs/2507.02592},
48
+ }
49
+ ```