Add dataset card, link to paper and GitHub repository

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +60 -0
README.md CHANGED
@@ -1,3 +1,63 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - recommendation-system
7
+ - sequential-recommendation
8
+ - ranking
9
  ---
10
+
11
+ # UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction
12
+
13
+ This repository contains preprocessed datasets for **UniRank**, an open benchmark for evaluating ranking models that unify sequential modeling and feature interaction in recommender systems.
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
+ ## Overview
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 contains fifteen unified ranking architectures and five industrial datasets from short-video, advertising, and e-commerce scenarios.
23
+
24
+ ## Dataset Statistics
25
+
26
+ The benchmark evaluates unified ranking models on five large-scale public datasets spanning short-video, advertising, and e-commerce platforms:
27
+
28
+ | Dataset | Instances | Users | Items | Fields | Tasks | Avg. length | Max. length |
29
+ |:--|--:|--:|--:|--:|--:|--:|--:|
30
+ | QK-Video | 493,306,303 | 4,996,176 | 3,752,235 | 10 | 4 | 99 | 6,013 |
31
+ | KuaiRand | 323,464,444 | 27,285 | 32,038,725 | 40 | 6 | 11,855 | 228,030 |
32
+ | TAAC-25 | 757,207,146 | 7,706,778 | 15,707,425 | 30 | 2 | 98 | 100 |
33
+ | Taobao | 23,601,301 | 470,570 | 831,643 | 23 | 4 | 50 | 3,756 |
34
+ | MerRec | 172,304,959 | 1,697,072 | 42,577,610 | 20 | 5 | 102 | 26,576 |
35
+
36
+ ## Preprocessed Datasets
37
+
38
+ | Dataset ID | Feedback tasks | Hugging Face Dataset Link |
39
+ | :--- | :--- | :--- |
40
+ | `QK_Video_Action` | click, follow, like, share | [salmon1802/QK-Video](https://huggingface.co/datasets/salmon1802/QK-Video) |
41
+ | `KuaiRand_Video_Action` | click, follow, like, comment, forward, long-view | [salmon1802/KuaiRand](https://huggingface.co/datasets/salmon1802/KuaiRand) |
42
+ | `TencentGR_10M_Action` | click, conversion | [salmon1802/TAAC-25](https://huggingface.co/datasets/salmon1802/TAAC-25) |
43
+ | `Taobao_Action` | click, cart, favorite, buy | [salmon1802/Taobao](https://huggingface.co/datasets/salmon1802/Taobao) |
44
+ | `MerRec_Action` | like, cart, offer, checkout, purchase | [salmon1802/MerRec](https://huggingface.co/datasets/salmon1802/MerRec) |
45
+
46
+ ## Quick Start (Download)
47
+
48
+ You can download any of the preprocessed datasets using the Hugging Face CLI:
49
+
50
+ ```bash
51
+ pip install huggingface_hub
52
+
53
+ # Example: Downloading KuaiRand dataset
54
+ huggingface-cli download salmon1802/KuaiRand \
55
+ --repo-type dataset \
56
+ --local-dir /path/to/data/KuaiRand_Video_Action
57
+ ```
58
+
59
+ Please update your local paths in `config/dataset_config.yaml` as described in the [GitHub Repository](https://github.com/salmon1802/UniRank).
60
+
61
+ ---
62
+
63
+ Please refer to the [official GitHub repository](https://github.com/salmon1802/UniRank) for setup, training, and evaluation code.