Add model card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ pipeline_tag: text-generation
4
+ ---
5
+
6
+ # Composition-RL-8B
7
+
8
+ This repository contains the **Composition-RL-8B** model checkpoint, a version of Qwen3-8B-Base fine-tuned using the **Composition-RL** framework.
9
+
10
+ Composition-RL is a data-efficient Reinforcement Learning with Verifiable Rewards (RLVR) approach introduced in the paper: [Composition-RL: Compose Your Verifiable Prompts for Reinforcement Learning of Large Language Models](https://huggingface.co/papers/2602.12036).
11
+
12
+ ## Overview
13
+
14
+ Composition-RL addresses the challenge of "too-easy" prompts (where the pass rate becomes 1 during training) by automatically composing multiple verifiable problems into a single, more complex, yet still verifiable prompt. This ensures that the model continues to receive informative training signals throughout the RL process, leading to improved reasoning capabilities across mathematical and scientific domains.
15
+
16
+ ## Model Details
17
+ - **Base Model:** Qwen3-8b-Base
18
+ - **Training Set:** [MATH-Composition-199K](https://huggingface.co/datasets/xx18/MATH-Composition-199K)
19
+ - **Framework:** Reinforcement Learning with Verifiable Rewards (RLVR)
20
+
21
+ ## Resources
22
+ - **Paper:** [Composition-RL: Compose Your Verifiable Prompts for Reinforcement Learning of Large Language Models](https://huggingface.co/papers/2602.12036)
23
+ - **GitHub Repository:** [XinXU-USTC/Composition-RL](https://github.com/XinXU-USTC/Composition-RL)
24
+ - **Collection:** [Composition-RL Models and Datasets](https://huggingface.co/collections/xx18/composition-rl)
25
+
26
+ ## Usage
27
+
28
+ For implementation details, including data generation and evaluation scripts, please refer to the [official GitHub repository](https://github.com/XinXU-USTC/Composition-RL).
29
+
30
+ ## Citation
31
+
32
+ If you find this work helpful for your research, please consider citing:
33
+
34
+ ```bibtex
35
+ @article{xu2026composition-rl,
36
+ title={Composition-RL: Compose Your Verifiable Prompts for Reinforcement Learning of Large Language Models},
37
+ 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},
38
+ journal={arXiv preprint arXiv:2602.12036},
39
+ year={2026}
40
+ }
41
+ ```