Suu nielsr HF Staff commited on
Commit
9d59c93
Β·
1 Parent(s): 6f1d017

Add metadata and links to paper/code (#1)

Browse files

- Add metadata and links to paper/code (c95740e4f369cb99892a3915dc15dc4156dbd70a)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +21 -24
README.md CHANGED
@@ -1,17 +1,26 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
3
  ---
 
4
  # ✨ GoLongRL-4B
5
 
6
- We present GoLongRL, a fully open-source, capability-oriented post-training recipe for long-context reinforcement learning with verifiable rewards (RLVR).
7
 
8
  | Resource | Link |
9
  |---|---|
10
- | πŸ“ Preprints | [Paper](https://arxiv.org/abs/2605.19577) |
11
- | πŸ€— Daily Paper | [Paper]() |
12
- | πŸ€— Model Hub | [GoLongRL-4B](https://huggingface.co/Kwai-Klear/GoLongRL-4B) |
13
- | πŸ€— Model Hub | [GoLongRL-30B-A3B](https://huggingface.co/Kwai-Klear/GoLongRL-30B-A3B) |
14
- | πŸ€— Dataset Hub | [GolongRL Dataset](https://huggingface.co/datasets/Kwai-Klear/GoLongRL) |
15
  | πŸ“§ Contact | xiao_xuan_zi_666@163.com & suzhenpeng13@163.com |
16
 
17
  ## πŸ“Œ Overview
@@ -22,31 +31,20 @@ We present GoLongRL, a fully open-source, capability-oriented post-training reci
22
  <sub>Overall performance comparison on long-context benchmarks (DocMath, LongBench-V2, Frames, MRCR, CorpusQA, LBV1-QA).</sub>
23
  </div>
24
 
25
- **GoLongRL-4B** achieves strong long-context performance at the 4B scale.
26
-
27
- | Model | Avg. | DocMath | LBV2 | Frames | MRCR | CorpusQA | LBV1-QA |
28
- |---|---|---|---|---|---|---|---|
29
- | Qwen3-4B-Thinking-2507 | 53.0 | 61.0 | 40.2 | 64.4 | 38.4 | 49.9 | 64.0 |
30
- | QwenLong-L1.5-4B (w. GRPO) | 56.1 | 61.3 | 44.3 | 67.1 | 40.9 | 58.8 | 64.1 |
31
- | QwenLong-L1.5-4B (w. AEPO) | 59.4 | 62.5 | 47.9 | 67.4 | 47.9 | 64.7 | 65.8 |
32
- | GoLongRL-4B (w. GRPO) | 62.2 | 62.5 | 45.5 | 66.6 | 67.5 | 65.1 | 65.9 |
33
- | **GoLongRL-4B (w. TMN-Reweight, Ours)** | **63.0** | **62.3** | **47.1** | **67.4** | **65.5** | **69.6** | **65.9** |
34
-
35
- Our framework combines the following.
36
 
37
- 1. **Capability-Oriented Dataset (23K samples, 9 task types).** Guided by a taxonomy of long-context capabilities, the dataset covers precise retrieval, comprehension, exhaustive retrieval, numerical reasoning, structured extraction, structured matching, graded ranking, sequence ordering, and summarization. Each task is paired with its natural evaluation metric (EM, Accuracy, F1, math_verify, IoU, SubEM, NDCG, Pairwise, ROUGE-L) as the reward function, rather than being collapsed into a single indicator.
38
 
39
- 2. **TMN-Reweight.** When training on heterogeneous reward types, per-prompt normalization in standard GRPO can mix up cross-task scale differences with prompt difficulty. TMN-Reweight is a simple modification that normalizes advantages at the task level instead of the prompt level, and adds a difficulty-adaptive weight to reduce noise from very easy or very hard prompts. It provides a modest but consistent improvement over vanilla GRPO in our ablations (+0.8 avg. at 4B scale), with gains mainly on aggregation-intensive benchmarks like CorpusQA.
40
 
41
  3. **Full Open Release.** We publicly release the complete dataset, the four-phase construction pipeline, and all training code.
42
 
43
  ### Key Results
44
 
45
- - Under the same vanilla GRPO setup, our dataset alone outperforms the closed-source QwenLong-L1.5 dataset at both 4B and 30B scales (+6.1 avg. at 4B, +2.6 avg. at 30B).
46
- - TMN-Reweight further improves average performance to 63.0 at 4B scale, surpassing QwenLong-L1.5 with its specialized AEPO algorithm (59.4).
47
  - General capabilities (MMLU-Pro, AIME24/25, GPQA) are preserved or improved, with substantial gains on dialogue memory (LongMemEval +13.6) and agentic memory benchmarks.
48
 
49
-
50
  ## πŸ” Evaluation
51
 
52
  Evaluation uses **QwenLong-Benchmarks**, covering three capability dimensions:
@@ -57,10 +55,9 @@ Evaluation uses **QwenLong-Benchmarks**, covering three capability dimensions:
57
  | **General** | MMLU-Pro, AIME 2024/2025, GPQA-Diamond |
58
  | **Memory** | BFCL-V4 (memory subset), LongMemEval |
59
 
60
-
61
  ## 🀝 Citation
62
 
63
- ```
64
  @misc{lv2026golongrlcapabilityorientedlongcontext,
65
  title={GoLongRL: Capability-Oriented Long Context Reinforcement Learning with Multitask Alignment},
66
  author={Minxuan Lv and Tiehua Mei and Tanlong Du and Junmin Chen and Zhenpeng Su and Ziyang Chen and Ziqi Wang and Zhennan Wu and Ruotong Pan and jian Liang and Ruiming Tang and Han Li},
 
1
  ---
2
  license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - long-context
7
+ - reinforcement-learning
8
+ - rlvr
9
+ - grpo
10
+ - multitask
11
  ---
12
+
13
  # ✨ GoLongRL-4B
14
 
15
+ We present **GoLongRL**, a fully open-source, capability-oriented post-training recipe for long-context reinforcement learning with verifiable rewards (RLVR).
16
 
17
  | Resource | Link |
18
  |---|---|
19
+ | πŸ“ Paper | [ArXiv (2605.19577)](https://arxiv.org/abs/2605.19577) |
20
+ | πŸ€— HF Paper | [GoLongRL](https://huggingface.co/papers/2605.19577) |
21
+ | πŸ’» Code | [GitHub Repository](https://github.com/xiaoxuanNLP/GoLongRL) |
22
+ | πŸ“‚ Collection | [GoLongRL Collection](https://huggingface.co/collections/Kwai-Klear/golongrl) |
23
+ | πŸ“Š Dataset | [GoLongRL Dataset](https://huggingface.co/datasets/Kwai-Klear/GoLongRL) |
24
  | πŸ“§ Contact | xiao_xuan_zi_666@163.com & suzhenpeng13@163.com |
25
 
26
  ## πŸ“Œ Overview
 
31
  <sub>Overall performance comparison on long-context benchmarks (DocMath, LongBench-V2, Frames, MRCR, CorpusQA, LBV1-QA).</sub>
32
  </div>
33
 
34
+ **GoLongRL-4B** achieves strong long-context performance at the 4B scale. Our framework combines the following:
 
 
 
 
 
 
 
 
 
 
35
 
36
+ 1. **Capability-Oriented Dataset (23K samples, 9 task types).** Guided by a taxonomy of long-context capabilities, the dataset covers precise retrieval, comprehension, exhaustive retrieval, numerical reasoning, structured extraction, structured matching, graded ranking, sequence ordering, and summarization. Each task is paired with its natural evaluation metric (EM, Accuracy, F1, math_verify, IoU, SubEM, NDCG, Pairwise, ROUGE-L) as the reward function.
37
 
38
+ 2. **TMN-Reweight.** To address optimization challenges from heterogeneous rewards, we propose TMN-Reweight, which combines task-level mean normalization for cross-task reward scale alignment with difficulty-adaptive weighting for more reliable advantage estimation. It provides a modest but consistent improvement over vanilla GRPO.
39
 
40
  3. **Full Open Release.** We publicly release the complete dataset, the four-phase construction pipeline, and all training code.
41
 
42
  ### Key Results
43
 
44
+ - Under the same vanilla GRPO setup, our dataset alone outperforms the closed-source QwenLong-L1.5 dataset.
45
+ - TMN-Reweight further improves average performance to 63.0 at 4B scale, surpassing QwenLong-L1.5 with its specialized AEPO algorithm.
46
  - General capabilities (MMLU-Pro, AIME24/25, GPQA) are preserved or improved, with substantial gains on dialogue memory (LongMemEval +13.6) and agentic memory benchmarks.
47
 
 
48
  ## πŸ” Evaluation
49
 
50
  Evaluation uses **QwenLong-Benchmarks**, covering three capability dimensions:
 
55
  | **General** | MMLU-Pro, AIME 2024/2025, GPQA-Diamond |
56
  | **Memory** | BFCL-V4 (memory subset), LongMemEval |
57
 
 
58
  ## 🀝 Citation
59
 
60
+ ```bibtex
61
  @misc{lv2026golongrlcapabilityorientedlongcontext,
62
  title={GoLongRL: Capability-Oriented Long Context Reinforcement Learning with Multitask Alignment},
63
  author={Minxuan Lv and Tiehua Mei and Tanlong Du and Junmin Chen and Zhenpeng Su and Ziyang Chen and Ziqi Wang and Zhennan Wu and Ruotong Pan and jian Liang and Ruiming Tang and Han Li},