Add paper link, project links, and update metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +29 -8
README.md CHANGED
@@ -1,22 +1,28 @@
1
  ---
2
- license: apache-2.0
 
3
  language:
4
  - en
 
5
  metrics:
6
  - accuracy
7
- base_model:
8
- - Qwen/Qwen2.5-VL-7B-Instruct
9
  ---
 
10
  <p align="center">
11
  <a href="https://huggingface.co/Carol0110/UniRM/blob/main/README.md"><b>English</b></a> | <a href="https://huggingface.co/Carol0110/UniRM/blob/main/README_zh.md">中文</a>
12
  </p>
13
 
14
  # UniRM: Multi-Head Scalar Reward Model for Multimodal Moderation
15
 
16
- **UniRM** is a **multi-head scalar reward model** that provides **interpretable, attribute-level scoring** for multimodal moderation.
17
- It is designed to support policy optimization for open-ended reasoning in **UniMod**, especially for the posterior response stage where deterministic labels are absent.
 
 
 
18
 
19
- UniRM decouples reward attribution into multiple dimensions so the model can distinguish **stylistic quality** from **safety boundaries** (privacy, bias, toxicity, legality), enabling transparent diagnosis and stable optimization.
20
 
21
  ---
22
 
@@ -25,7 +31,7 @@ UniRM decouples reward attribution into multiple dimensions so the model can dis
25
  > UniRM demo video:
26
 
27
  <video controls preload="metadata" style="width:100%; max-width:900px; border-radius:12px;">
28
- <source src="https://huggingface.co/Carol0110/UniRM/blob/main/unirm.mp4" type="video/mp4">
29
  </video>
30
 
31
  ---
@@ -39,4 +45,19 @@ git clone https://github.com/TideDra/lmm-r1.git
39
  cd lmm-r1
40
  pip install -e .[vllm]
41
  pip install flash_attn --no-build-isolation
42
- python unirm.py --model_path {PATH_TO_UNIRM}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model:
3
+ - Qwen/Qwen2.5-VL-7B-Instruct
4
  language:
5
  - en
6
+ license: apache-2.0
7
  metrics:
8
  - accuracy
9
+ library_name: transformers
10
+ pipeline_tag: image-text-to-text
11
  ---
12
+
13
  <p align="center">
14
  <a href="https://huggingface.co/Carol0110/UniRM/blob/main/README.md"><b>English</b></a> | <a href="https://huggingface.co/Carol0110/UniRM/blob/main/README_zh.md">中文</a>
15
  </p>
16
 
17
  # UniRM: Multi-Head Scalar Reward Model for Multimodal Moderation
18
 
19
+ **UniRM** is a **multi-head scalar reward model** that provides **interpretable, attribute-level scoring** for multimodal moderation. It was introduced in the paper [From Sparse Decisions to Dense Reasoning: A Multi-attribute Trajectory Paradigm for Multimodal Moderation](https://huggingface.co/papers/2602.02536).
20
+
21
+ - **Project Page:** [trustworthylab.github.io/UniMod/](https://trustworthylab.github.io/UniMod/)
22
+ - **Repository:** [github.com/Carol-gutianle/UniMod](https://github.com/Carol-gutianle/UniMod)
23
+ - **Paper:** [arXiv:2602.02536](https://huggingface.co/papers/2602.02536)
24
 
25
+ UniRM is designed to support policy optimization for open-ended reasoning in **UniMod**, especially for the posterior response stage where deterministic labels are absent. It decouples reward attribution into multiple dimensions so the model can distinguish **stylistic quality** from **safety boundaries** (privacy, bias, toxicity, legality), enabling transparent diagnosis and stable optimization.
26
 
27
  ---
28
 
 
31
  > UniRM demo video:
32
 
33
  <video controls preload="metadata" style="width:100%; max-width:900px; border-radius:12px;">
34
+ <source src="https://huggingface.co/Carol0110/UniRM/resolve/main/unirm.mp4" type="video/mp4">
35
  </video>
36
 
37
  ---
 
45
  cd lmm-r1
46
  pip install -e .[vllm]
47
  pip install flash_attn --no-build-isolation
48
+ python unirm.py --model_path {PATH_TO_UNIRM}
49
+ ```
50
+
51
+ ## Citation
52
+
53
+ ```bibtex
54
+ @misc{gu2026sparsedecisionsdensereasoning,
55
+ title={From Sparse Decisions to Dense Reasoning: A Multi-attribute Trajectory Paradigm for Multimodal Moderation},
56
+ author={Tianle Gu and Kexin Huang and Lingyu Li and Ruilin Luo and Shiyang Huang and Zongqi Wang and Yujiu Yang and Yan Teng and Yingchun Wang},
57
+ year={2026},
58
+ eprint={2602.02536},
59
+ archivePrefix={arXiv},
60
+ primaryClass={cs.LG},
61
+ url={https://arxiv.org/abs/2602.02536},
62
+ }
63
+ ```