Improve dataset card: add paper link, GitHub repository and evaluation usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +42 -13
README.md CHANGED
@@ -1,4 +1,12 @@
1
  ---
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: text
@@ -34,25 +42,46 @@ configs:
34
  data_files:
35
  - split: test
36
  path: data/test-*
37
- license: cc-by-sa-4.0
38
- task_categories:
39
- - text-generation
40
- language:
41
- - en
42
  ---
43
 
 
44
 
45
- # UserMirrorrer-eval
46
- This is the evaluation set of UserMirrorer.
47
 
48
- Please refer to our paper: "Mirroring Users: Towards Building Preference-aligned User Simulator with Recommendation Feedback".
49
 
50
  ## Notice
51
 
52
- In the `UserMirrorer` dataset, the raw data from `MIND` and `MovieLens-1M` datasets are distributed under restrictive licenses and cannot
53
- be included directly.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
- Therefore, we provide a comprehensive, step-by-step pipeline to load the original archives, execute all necessary preprocessing
56
- operations, and assemble the final UserMirrorer training and test splits.
57
 
58
- Click [here](https://colab.research.google.com/github/UserMirrorer/UserMirrorer/blob/main/UserMirrorer_GetFullDataset.ipynb) to run the script notebook on Google Colab to get the full dataset. Also, you can download it and run it locally.
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: cc-by-sa-4.0
5
+ task_categories:
6
+ - text-generation
7
+ tags:
8
+ - recommendation-system
9
+ - user-simulation
10
  dataset_info:
11
  features:
12
  - name: text
 
42
  data_files:
43
  - split: test
44
  path: data/test-*
 
 
 
 
 
45
  ---
46
 
47
+ # UserMirrorer-eval
48
 
49
+ This is the evaluation set of **UserMirrorer**, presented in the paper [Mirroring Users: Towards Building Preference-aligned User Simulator with User Feedback in Recommendation](https://huggingface.co/papers/2508.18142).
 
50
 
51
+ **Code**: [Joinn99/UserMirrorer](https://github.com/Joinn99/UserMirrorer)
52
 
53
  ## Notice
54
 
55
+ In the `UserMirrorer` dataset, the raw data from `MIND` and `MovieLens-1M` datasets are distributed under restrictive licenses and cannot be included directly.
56
+
57
+ Therefore, we provide a comprehensive, step-by-step pipeline to load the original archives, execute all necessary preprocessing operations, and assemble the final UserMirrorer training and test splits.
58
+
59
+ Click [here](https://colab.research.google.com/github/UserMirrorer/UserMirrorer/blob/main/UserMirrorer_GetFullDataset.ipynb) to run the script notebook on Google Colab to get the full dataset. Also, you can download it and run it locally.
60
+
61
+ ## Evaluation Usage
62
+
63
+ To run the evaluation, you can execute the following command provided in the official repository:
64
+
65
+ ```bash
66
+ python usermirrorer/run_eval.py \
67
+ --project_path <YOUR_WORKING_DIR> \ # The path to your working directory
68
+ --model_path <MODEL_PATH> \ # The path to the model
69
+ --input_file <INPUT_FILE> \ # The path to the input file
70
+ --output_file <OUTPUT_FILE> \ # The path to the output file
71
+ --mode <MODE> \ # The mode of the evaluation
72
+ --repeat_times <REPEAT_TIMES> \ # The number of sampling times
73
+ ```
74
 
75
+ ## Citation
 
76
 
77
+ ```bibtex
78
+ @misc{wei2025mirroringusersbuildingpreferencealigned,
79
+ title={Mirroring Users: Towards Building Preference-aligned User Simulator with User Feedback in Recommendation},
80
+ author={Tianjun Wei and Huizhong Guo and Yingpeng Du and Zhu Sun and Huang Chen and Dongxia Wang and Jie Zhang},
81
+ year={2025},
82
+ eprint={2508.18142},
83
+ archivePrefix={arXiv},
84
+ primaryClass={cs.HC},
85
+ url={https://arxiv.org/abs/2508.18142},
86
+ }
87
+ ```