WaitHZ commited on
Commit
2daa500
·
verified ·
1 Parent(s): 4d07bd8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+ <h1 align="center">SSPO</h1>
3
+ <h3 align="center">Beyond Outcome Rewards: Step-Level Self-Distilled Policy Optimization for Deep Search Agents</h3>
4
+
5
+ <p align="center">
6
+ <a href="#">📄 arXiv</a> •
7
+ <a href="https://github.com/hkust-nlp/SSPO">💻 Code</a> •
8
+ <a href="https://huggingface.co/datasets/WaitHZ/SSPO-data">🤗 Dataset</a>
9
+ </p>
10
+
11
+ [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
12
+ ![Python](https://img.shields.io/badge/Python-%E2%89%A53.10-blue)
13
+ ![Last Commit](https://img.shields.io/github/last-commit/hkust-nlp/SSPO?color=blue)
14
+ </div>
15
+
16
+ ## Table of Contents
17
+
18
+ - [🌟Overview](#overview)
19
+ - [🔧Installation](#installation)
20
+ - [🔑Configuration](#configuration)
21
+ - [📚Dataset](#dataset)
22
+ - [🧪Data Construction](#data-construction)
23
+ - [🚀Training](#training)
24
+ - [📁Repository Structure](#repository-structure)
25
+ - [🚩Citation](#citation)
26
+ - [🌻Acknowledgement](#acknowledgement)
27
+
28
+ ## 🌟Overview
29
+
30
+ Deep search agents operate over trajectories spanning dozens of information-seeking steps, but standard reinforcement learning provides only a single outcome reward for the entire trajectory. This sparse signal makes it difficult to determine which intermediate reasoning and tool-use actions should be reinforced or suppressed. Although on-policy self-distillation can provide denser supervision, directly distilling from a teacher with privileged information creates a severe information asymmetry: the teacher can take shortcuts that are unavailable to the student at inference time, leading to premature termination and tool-use collapse.
31
+
32
+ SSPO addresses this problem through two designs:
33
+
34
+ - **Evidence Anchors** are concise, step-level evidence snippets extracted from the web. They provide the self-teacher with action-relevant privileged information without prescribing a complete search trajectory.
35
+ - **Step-Level Self-Distilled Advantage Weights** convert teacher–student disagreement into a weight for each complete information-seeking step. The outcome reward determines the direction of the policy update, while the privileged teacher controls its magnitude. These weights are applied only to incorrect trajectories, leaving correct trajectories unaffected by the self-distillation signal.
36
+
37
+ Experiments with Qwen3-8B on BrowseComp, GAIA, and FRAMES show that SSPO consistently outperforms GRPO and matches or surpasses GRPO trained with twice as many gradient steps, while adding only about 5% training overhead from teacher scoring.
38
+
39
+ <div align="center">
40
+ <img src="./assets/overview.png" width="100%">
41
+ </div>
42
+
43
+ ## 📚Dataset
44
+
45
+ The training data are available at [WaitHZ/SSPO-data](https://huggingface.co/datasets/WaitHZ/SSPO-data).
46
+
47
+ | File | Description | Used by |
48
+ | --- | --- | --- |
49
+ | `gpt-oss-120b-traj.jsonl` | Correct GPT-OSS-120B teacher trajectories | Cold-start SFT |
50
+ | `evidence_anchors.jsonl` | Questions, answers, and Evidence Anchors | GRPO and SSPO |
51
+
52
+ Download the files into `data/`:
53
+
54
+ ```bash
55
+ hf download WaitHZ/SSPO-data \
56
+ --repo-type dataset \
57
+ --local-dir data
58
+ ```
59
+
60
+ ## 🚩Citation
61
+
62
+ ```bib
63
+
64
+ ```
65
+
66
+ ## 🌻Acknowledgement
67
+
68
+ We thank [WebExplorer](https://github.com/hkust-nlp/WebExplorer) for its data-construction framework.