Add model card and metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: text-generation
4
+ ---
5
+
6
+ # Composition-RL-8B
7
+
8
+ [Composition-RL](https://huggingface.co/papers/2602.12036) is a data-efficient Reinforcement Learning with Verifiable Rewards (RLVR) approach that addresses the challenge of "too-easy" prompts (those with a pass rate of 1) by automatically composing multiple verifiable problems into a single, harder yet still-verifiable prompt. This method ensures that training signals remain informative throughout the reinforcement learning process, leading to consistent improvements in reasoning capability.
9
+
10
+ This checkpoint is the **8B** parameter version, initialized from **Qwen3-8B-Base** and trained on the **MATH-Composition-199K** dataset.
11
+
12
+ ## Resources
13
+ - **Paper:** [Composition-RL: Compose Your Verifiable Prompts for Reinforcement Learning of Large Language Models](https://huggingface.co/papers/2602.12036)
14
+ - **Repository:** [GitHub - XinXU-USTC/Composition-RL](https://github.com/XinXU-USTC/Composition-RL)
15
+ - **Collection:** [Composition-RL Collection](https://huggingface.co/collections/xx18/composition-rl)
16
+
17
+ ## Key Features
18
+ - **Automatic Composition:** Composes multiple verifiable problems into new, more challenging prompts.
19
+ - **Improved Reasoning:** Consistently improves reasoning performance over RL trained on the original dataset across various model sizes.
20
+ - **Curriculum Learning:** Can be further boosted with a curriculum variant that gradually increases compositional depth over training.
21
+
22
+ ## Citation
23
+ If you find this work helpful for your research, please consider citing the paper:
24
+ ```bibtex
25
+ @article{xu2026composition-rl,
26
+ title={Composition-RL: Compose Your Verifiable Prompts for Reinforcement Learning of Large Language Models},
27
+ author={Xu, Xin and Bai, Clive and Yang, Kai and Chen, Tianhao and Chen, Yangkun and Liu, Weijie and Chen, Hao and Wang, Yang and Yang, Saiyong and Yang, Can},
28
+ journal={arXiv preprint arXiv:2602.12036},
29
+ year={2026}
30
+ }
31
+ ```