diff --git a/examples/gmpo_trainer/README.md b/examples/gmpo_trainer/README.md
index 3d2b6335b..71d0bb212 100644
--- a/examples/gmpo_trainer/README.md
+++ b/examples/gmpo_trainer/README.md
@@ -6,21 +6,20 @@
This is the official implementaion of paper [***Geometric-Mean Policy Optimization***](https://arxiv.org/abs/2507.20673).
-

+
-
## 1. Contents
- Geometric-Mean Policy Optimization
- [1. Contents](#1-contents)
- [2. Introduction](#2-introduction)
- - [3. Code Usage](#4-code-usage)
- - [4. Contacts](#5-contacts)
- - [5. Citation](#7-citation)
+ - [3. Code Usage](#3-code-usage)
+ - [4. Contacts](#4-contacts)
+ - [5. Citation](#5-citation)
## 2. Introduction
-Recent advancements, such as Group Relative Policy Optimization (GRPO), have enhanced the reasoning capabilities of large language models by optimizing the arithmetic mean of token-level rewards. However, GRPO suffers from unstable policy updates when processing tokens with outlier importance-weighted rewards, which manifests as extreme importance sampling ratios during training, i.e., the ratio between the sampling probabilities assigned to a token by the current and old policies. In this work, we propose Geometric-Mean Policy Optimization (GMPO), a stabilized variant of GRPO. Instead of optimizing the arithmetic mean, GMPO maximizes the geometric mean of token-level rewards, which is inherently less sensitive to outliers and maintains a more stable range of importance sampling ratio. In addition, we provide comprehensive theoretical and experimental analysis to justify the design and stability benefits of GMPO. Beyond improved stability, GMPO-7B outperforms GRPO by an average of 4.1% on multiple mathematical benchmarks and 1.4% on multimodal reasoning benchmark, including AIME24, AMC, MATH500, OlympiadBench, Minerva, and Geometry3K.
+Group Relative Policy Optimization (GRPO) has significantly enhanced the reasoning capability of large language models by optimizing the arithmetic mean of token-level rewards. Unfortunately, GRPO is observed to suffer from unstable policy updates when facing tokens with outlier importance-weighted rewards, which manifest as extreme importance sampling ratios during training. In this study, we propose Geometric-Mean Policy Optimization (GMPO), with the aim to improve the stability of GRPO through suppressing token reward outliers. Instead of optimizing the arithmetic mean, GMPO maximizes the geometric mean of token-level rewards, which is inherently less sensitive to outliers and maintains a more stable range of importance sampling ratio. GMPO is plug-and-play—simply replacing GRPO's arithmetic mean with the geometric mean of token-level rewards, as the latter is inherently less sensitive to outliers. GMPO is theoretically plausible—analysis reveals that both GMPO and GRPO are weighted forms of the policy gradient while the former enjoys more stable weights, which consequently benefits policy optimization and performance. Experiments on multiple mathematical reasoning benchmarks show that GMPO-7B improves the average Pass@1 of GRPO by up to 4.1%, outperforming many state-of-the-art approaches.
## 3. Code Usage
@@ -30,7 +29,7 @@ clip_ratio_low=0.4
clip_ratio_high=0.4
loss_mode=geo_mean
```
-
+We observed that using a large clip ratio during Mixture-of-Experts (MoE) model training often leads to optimization instability. When training MoE models, consider lowering the clip ratio to achieve more stable convergence.
To get started quickly, run:
```
bash examples/gmpo_trainer/run_qwen2_5-7b_math.sh
@@ -51,13 +50,10 @@ If you have any question about our work or this repository, please don't hesitat
## 5. Citation
```
-@misc{zhao2025geometricmeanpolicyoptimization,
- title={Geometric-Mean Policy Optimization},
- author={Yuzhong Zhao and Yue Liu and Junpeng Liu and Jingye Chen and Xun Wu and Yaru Hao and Tengchao Lv and Shaohan Huang and Lei Cui and Qixiang Ye and Fang Wan and Furu Wei},
- year={2025},
- eprint={2507.20673},
- archivePrefix={arXiv},
- primaryClass={cs.CL},
- url={https://arxiv.org/abs/2507.20673},
+@article{zhao2025geometric,
+ title={Geometric-mean policy optimization},
+ author={Zhao, Yuzhong and Liu, Yue and Liu, Junpeng and Chen, Jingye and Wu, Xun and Hao, Yaru and Lv, Tengchao and Huang, Shaohan and Cui, Lei and Ye, Qixiang and others},
+ journal={arXiv preprint arXiv:2507.20673},
+ year={2025}
}
```