nielsr HF Staff commited on
Commit
7577e3f
·
verified ·
1 Parent(s): 9ef6697

Add model card, metadata, and links to paper/code

Browse files

This PR adds a comprehensive model card for the model, including:
- Metadata tags: `pipeline_tag` set to `text-generation`, `library_name: transformers`, and `license: apache-2.0`.
- Information about the paper [Smaller Models are Natural Explorers for Policy-Level Diversity in GRPO](https://huggingface.co/papers/2605.30789).
- Links to the project page and official GitHub repository.

Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ # Smaller Models are Natural Explorers for Policy-Level Diversity in GRPO
8
+
9
+ This repository contains the model checkpoints presented in the paper [Smaller Models are Natural Explorers for Policy-Level Diversity in GRPO](https://huggingface.co/papers/2605.30789) (ICML 2026).
10
+
11
+ * **Project Page:** [S2L-PO Project Page](https://qishisuren123.github.io/S2L-PO)
12
+ * **GitHub Repository:** [GitHub - S2L-PO](https://github.com/qishisuren123/S2L-PO)
13
+
14
+ ## Introduction
15
+
16
+ S2L-PO (Small-to-Large Policy Optimization) is a post-training framework designed to enhance rollout diversity in Group Relative Policy Optimization (GRPO) for LLMs. Instead of injecting token-level randomness (which can cause logical inconsistencies over long reasoning chains), S2L-PO leverages a fixed, smaller model from the same family as an explorer to guide a larger target model during the rollout phase.
17
+
18
+ ## Citation
19
+
20
+ If you find this work useful, please cite:
21
+
22
+ ```bibtex
23
+ @inproceedings{ren2026s2lpo,
24
+ title = {Smaller Models are Natural Explorers for Policy-Level Diversity in {GRPO}},
25
+ author = {Ren, Yiming and Xu, Yiran and Lin, Zicheng and Shi, Chufan and Chen, Yukang and
26
+ Wang, Dingdong and Wu, Tianhe and Wang, Jujie and Yang, Yujiu and Qiao, Yu and Chu, Ruihang},
27
+ booktitle = {International Conference on Machine Learning (ICML)},
28
+ year = {2026},
29
+ }
30
+ ```