Jinyang23 commited on
Commit
f73f1b7
·
verified ·
1 Parent(s): 2e00bf1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -3
README.md CHANGED
@@ -1,3 +1,66 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ metrics:
6
+ - accuracy
7
+ base_model:
8
+ - Qwen/Qwen2.5-1.5B-Instruct
9
+ pipeline_tag: reinforcement-learning
10
+ tags:
11
+ - agent
12
+ - reinforcement-learning
13
+ - long-horizon
14
+ - embodied-ai
15
+ - strategic-exploration
16
+ ---
17
+
18
+ # SPARK: Strategic Policy-Aware Exploration via Dynamic Branching
19
+
20
+ This model is trained using the **SPARK** framework proposed in the paper:
21
+
22
+ **[SPARK: Strategic Policy-Aware Exploration via Dynamic Branching for Long-Horizon Agentic Learning](https://huggingface.co/papers/2601.20209)**
23
+
24
+ 📄 **Paper:** [arXiv:2601.20209](https://arxiv.org/abs/2601.20209)
25
+
26
+ ## Overview
27
+
28
+ SPARK is a novel reinforcement learning framework that enables autonomous strategic exploration for long-horizon agentic tasks. Instead of uniformly exploring all steps, SPARK selectively branches at critical decision points using intrinsic `<explore>` signals, achieving superior performance with significantly fewer training samples.
29
+
30
+ ## Key Features
31
+
32
+ - 🎯 **Autonomous Strategic Exploration**: Dynamically identifies critical states for branching without human priors
33
+ - ⚡ **Sample Efficient**: Achieves 84.4% success with only 20% training data (vs. GRPO 76.6% at 100%)
34
+ - 💰 **Token Efficient**: Reduces token consumption by up to 47% through prefix sharing
35
+ - 🌍 **Strong Generalization**: Maintains 80.5% success on unseen tasks (significantly outperforms GRPO)
36
+
37
+ ## Performance Highlights
38
+
39
+ | Benchmark | SPARK-1.5B | GPT-5 | Gemini-2.5-Pro |
40
+ |-----------|------------|-------|----------------|
41
+ | ALFWorld L2 | **80.5%** | 63.3% | 55.5% |
42
+ | ScienceWorld L2 | **49.2%** | 33.6% | 30.5% |
43
+ | WebShop | **75.8%** | 29.7% | 32.0% |
44
+
45
+ ## Citation
46
+
47
+ If you use this model or the SPARK framework in your research, please cite:
48
+ ```bibtex
49
+ @article{wu2026spark,
50
+ title={SPARK: Strategic Policy-Aware Exploration via Dynamic Branching for Long-Horizon Agentic Learning},
51
+ author={Wu, Jinyang and Yang, Shuo and Yang, Changpeng and Shen, Yuhao and Zhang, Shuai and Wen, Zhengqi and Tao, Jianhua},
52
+ journal={arXiv preprint arXiv:2601.20209},
53
+ year={2026}
54
+ }
55
+ ```
56
+
57
+ ## Model Details
58
+
59
+ - **Base Model:** Qwen/Qwen2.5-1.5B-Instruct
60
+ - **Training Method:** SPARK (Dynamic Branching RL)
61
+ - **Training Dataset:** WebShop
62
+
63
+ ## Links
64
+
65
+ - 📄 Paper: https://arxiv.org/abs/2601.20209
66
+ - 🤗 Paper Page: https://huggingface.co/papers/2601.20209