Add dataset card, link to paper and GitHub

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - recommendation
7
+ - ranking
8
+ - sequential-recommendation
9
+ ---
10
+
11
+ # UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction
12
+
13
+ This repository contains dataset artifacts for **UniRank**, an open benchmark for unified sequential modeling and feature interaction in large-scale recommendation ranking.
14
+
15
+ * **Paper:** [UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction](https://huggingface.co/papers/2607.19987)
16
+ * **GitHub Repository:** [salmon1802/UniRank](https://github.com/salmon1802/UniRank)
17
+
18
+ ## Dataset Summary
19
+
20
+ UniRank standardizes chronological point-wise autoregressive supervision, multi-feedback evaluation, model implementations, data processing, and distributed training in one reproducible pipeline.
21
+
22
+ The benchmark evaluates unified ranking architectures on five large-scale industrial datasets from short-video, advertising, and e-commerce scenarios:
23
+
24
+ | Dataset | Instances | Users | Items | Fields | Tasks | Avg. length | Max. length |
25
+ |:--|--:|--:|--:|--:|--:|--:|--:|
26
+ | **QK-Video** | 493,306,303 | 4,996,176 | 3,752,235 | 10 | 4 | 99 | 6,013 |
27
+ | **KuaiRand** | 323,464,444 | 27,285 | 32,038,725 | 40 | 6 | 11,855 | 228,030 |
28
+ | **TAAC-25** | 757,207,146 | 7,706,778 | 15,707,425 | 30 | 2 | 98 | 100 |
29
+ | **Taobao** | 23,601,301 | 470,570 | 831,643 | 23 | 4 | 50 | 3,756 |
30
+ | **MerRec** | 172,304,959 | 1,697,072 | 42,577,610 | 20 | 5 | 102 | 26,576 |
31
+
32
+ ## Download and Usage
33
+
34
+ The recommended workflow is to download a ready-to-use dataset from Hugging Face to local storage. For example, to download the KuaiRand dataset:
35
+
36
+ ```bash
37
+ hf download salmon1802/KuaiRand \
38
+ --repo-type dataset \
39
+ --local-dir /path/to/data/KuaiRand_Video_Action
40
+ ```
41
+
42
+ Please refer to the [GitHub Repository](https://github.com/salmon1802/UniRank) for preprocessing scripts, model configurations, and training instructions.
43
+
44
+ ## Citation
45
+
46
+ If you find this dataset or benchmark useful, please cite the paper:
47
+
48
+ ```bibtex
49
+ @article{unirank2026,
50
+ title={UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction},
51
+ author={UniRank Authors},
52
+ journal={arXiv preprint arXiv:2607.19987},
53
+ year={2026}
54
+ }
55
+ ```