Improve model card and add metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +35 -11
README.md CHANGED
@@ -1,21 +1,45 @@
1
  ---
2
  library_name: transformers
3
- tags: []
 
 
 
 
 
4
  ---
5
 
6
- # Model Card for Model ID
7
 
8
- <!-- Provide a quick summary of what the model is/does. -->
9
- ## UserMirrorrer-Qwen-DPO
10
 
11
- This is the fine-tuned checkpoint using our constructed dataset [UserMirrorer](https://huggingface.co/datasets/MirrorUser/UserMirrorer).
12
-
13
- Please refer to our paper: "Mirroring Users: Towards Building Preference-aligned User Simulator with Recommendation Feedback".
14
 
15
  ## Model Details
16
 
17
- The finetuned model is based on [Qwen-2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- The fine-tuning process involves 2 stage:
20
- 1. Supervised Finetuning for 1 epoch
21
- 2. DPO Finetuning for 2 epochs
 
 
 
 
 
 
 
 
 
1
  ---
2
  library_name: transformers
3
+ pipeline_tag: text-generation
4
+ base_model: Qwen/Qwen2.5-3B-Instruct
5
+ license: cc-by-nc-4.0
6
+ tags:
7
+ - recommendation-system
8
+ - user-simulation
9
  ---
10
 
11
+ # UserMirrorrer-Qwen-DPO
12
 
13
+ This is a fine-tuned user simulator model introduced in the paper "[Mirroring Users: Towards Building Preference-aligned User Simulator with User Feedback in Recommendation](https://huggingface.co/papers/2508.18142)".
 
14
 
15
+ The model is designed to simulate user behavior in recommender systems (RSs) by leveraging extensive user feedback to achieve better preference alignment. It uses decision-making processes as explanatory rationales to reduce ambiguity in simulation samples.
 
 
16
 
17
  ## Model Details
18
 
19
+ - **Base Model:** [Qwen-2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct)
20
+ - **Fine-tuning Process:**
21
+ 1. **Supervised Finetuning (SFT):** 1 epoch.
22
+ 2. **Direct Preference Optimization (DPO):** 2 epochs.
23
+ - **Dataset:** [UserMirrorer](https://huggingface.co/datasets/MirrorUser/UserMirrorer)
24
+
25
+ ## Resources
26
+
27
+ - **Paper:** [Mirroring Users: Towards Building Preference-aligned User Simulator with User Feedback in Recommendation](https://arxiv.org/abs/2508.18142)
28
+ - **GitHub Repository:** [Joinn99/UserMirrorer](https://github.com/Joinn99/UserMirrorer)
29
+ - **Training Data:** [UserMirrorer Training Set](https://huggingface.co/datasets/Joinn/UserMirrorer)
30
+
31
+ ## Citation
32
+
33
+ If you find this work useful in your research, please consider citing the following paper:
34
 
35
+ ```bibtex
36
+ @misc{wei2025mirroringusersbuildingpreferencealigned,
37
+ title={Mirroring Users: Towards Building Preference-aligned User Simulator with User Feedback in Recommendation},
38
+ author={Tianjun Wei and Huizhong Guo and Yingpeng Du and Zhu Sun and Huang Chen and Dongxia Wang and Jie Zhang},
39
+ year={2025},
40
+ eprint={2508.18142},
41
+ archivePrefix={arXiv},
42
+ primaryClass={cs.HC},
43
+ url={https://arxiv.org/abs/2508.18142},
44
+ }
45
+ ```