Add dataset card and link to paper

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - recommendation-system
7
+ - preference-optimization
8
+ - dpo
9
+ ---
10
+
11
+ # DynamicPO-Data
12
+
13
+ This repository contains the processed datasets for the paper [DynamicPO: Dynamic Preference Optimization for Recommendation](https://huggingface.co/papers/2605.00327).
14
+
15
+ **Official Code**: [xingyuHuxingyu/DynamicPO](https://github.com/xingyuHuxingyu/DynamicPO)
16
+
17
+ ## Dataset Summary
18
+ DynamicPO is a plug-and-play dynamic preference optimization framework for LLM-based recommender systems. This repository provides the processed data used to evaluate the framework, following the construction pipeline of prior works like [LLaRA](https://arxiv.org/abs/2312.02445) and [S-DPO](https://arxiv.org/abs/2406.09215).
19
+
20
+ The collection includes processed splits for:
21
+ - **LastFM**: Music recommendation data.
22
+ - **Goodreads**: Book recommendation data.
23
+ - **Steam**: Game recommendation data.
24
+
25
+ The data consists of processed splits for supervised fine-tuning (SFT), preference optimization (PO), and evaluation.
26
+
27
+ ## Data Preparation
28
+ As noted in the official GitHub repository, the LastFM data can be extracted using the following command:
29
+
30
+ ```bash
31
+ cd ./data
32
+ unzip lastfm-sft-cans20.zip
33
+ ```
34
+
35
+ The processed splits for Goodreads and Steam are also available within this dataset release.
36
+
37
+ ## Citation
38
+ If you find this work useful, please consider citing the following paper:
39
+
40
+ ```bibtex
41
+ @article{hu2026dynamicpo,
42
+ title={DynamicPO: Dynamic Preference Optimization for Recommendation},
43
+ author={Hu, Xingyu and Zhang, Kai and Wu, Jiancan and Wang, Shuli and Wang, Chi and Chen, Wenshuai and Zhu, Yinhua and Wang, Haitao and Wang, Xingxing and Wang, Xiang},
44
+ journal={arXiv preprint arXiv:2605.00327},
45
+ year={2026}
46
+ }
47
+ ```