Improve model card with tags and links

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +18 -5
README.md CHANGED
@@ -1,14 +1,27 @@
1
  ---
2
- license: mit
3
  datasets:
4
  - PAPOGalaxy/PAPO_train
 
 
 
5
  ---
6
 
 
 
 
 
 
7
 
8
- # PAPO Model
9
 
10
- ## Model Source
11
- This is the official model released for paper **PAPO: Perception-Aware Policy Optimization for Multimodal Reasoning** (arxiv.org/abs/2507.06448)
 
 
12
 
13
  ## Model Version
14
- PAPO-H (γ=0.02)
 
 
 
 
 
1
  ---
 
2
  datasets:
3
  - PAPOGalaxy/PAPO_train
4
+ license: mit
5
+ pipeline_tag: image-text-to-text
6
+ library_name: transformers
7
  ---
8
 
9
+ # PAPO Model: Perception-Aware Policy Optimization for Multimodal Reasoning
10
+
11
+ This is the official model released for the paper **[Perception-Aware Policy Optimization for Multimodal Reasoning](https://huggingface.co/papers/2507.06448)**.
12
+
13
+ ## Abstract
14
 
15
+ Reinforcement Learning with Verifiable Rewards (RLVR) has proven to be a highly effective strategy for endowing Large Language Models (LLMs) with robust multi-step reasoning abilities. However, its design and optimizations remain tailored to purely textual domains, resulting in suboptimal performance when applied to multimodal reasoning tasks. In particular, we observe that a major source of error in current multimodal reasoning lies in the perception of visual inputs. To address this bottleneck, we propose Perception-Aware Policy Optimization (PAPO), a simple yet effective extension of GRPO that encourages the model to learn to perceive while learning to reason, entirely from internal supervision signals. Notably, PAPO does not rely on additional data curation, external reward models, or proprietary models. Specifically, we introduce the Implicit Perception Loss in the form of a KL divergence term to the GRPO objective, which, despite its simplicity, yields significant overall improvements (4.4%) on diverse multimodal benchmarks. The improvements are more pronounced, approaching 8.0%, on tasks with high vision dependency. We also observe a substantial reduction (30.5%) in perception errors, indicating improved perceptual capabilities with PAPO. We conduct comprehensive analysis of PAPO and identify a unique loss hacking issue, which we rigorously analyze and mitigate through a Double Entropy Loss. Overall, our work introduces a deeper integration of perception-aware supervision into RLVR learning objectives and lays the groundwork for a new RL framework that encourages visually grounded reasoning.
16
 
17
+ ## Project Page & Code
18
+
19
+ * **Project Page:** [https://mikewangwzhl.github.io/PAPO/](https://mikewangwzhl.github.io/PAPO/)
20
+ * **GitHub Repository:** [https://github.com/mikewangwzhl/PAPO](https://github.com/mikewangwzhl/PAPO)
21
 
22
  ## Model Version
23
+ PAPO-H (γ=0.02)
24
+
25
+ ## Usage
26
+
27
+ This model can be used with the Hugging Face `transformers` library. For detailed usage examples and how to integrate it into your projects, please refer to the official [GitHub Repository](https://github.com/mikewangwzhl/PAPO).