Add dataset card, link to paper and GitHub repository
#1
by nielsr HF Staff - opened
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 |
+
- benchmark
|
| 10 |
---
|
| 11 |
+
|
| 12 |
+
# UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction
|
| 13 |
+
|
| 14 |
+
[**GitHub**](https://github.com/salmon1802/UniRank) | [**Paper**](https://huggingface.co/papers/2607.19987)
|
| 15 |
+
|
| 16 |
+
UniRank is an open benchmark for ranking models that unify sequential modeling and feature interaction in large-scale recommender systems. It standardizes chronological point-wise autoregressive supervision, multi-feedback evaluation, model implementations, and distributed training.
|
| 17 |
+
|
| 18 |
+
This repository hosts preprocessed versions of the 5 industrial datasets used in the benchmark, spanning short-video, advertising, and e-commerce scenarios.
|
| 19 |
+
|
| 20 |
+
## Dataset Overview
|
| 21 |
+
|
| 22 |
+
The benchmark covers five large public datasets, with sequence lengths spanning from $10^2$ to $10^5$:
|
| 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 |
+
### Feedback Tasks
|
| 33 |
+
|
| 34 |
+
* **QK-Video**: click, follow, like, share
|
| 35 |
+
* **KuaiRand**: click, follow, like, comment, forward, long-view
|
| 36 |
+
* **TAAC-25**: click, conversion
|
| 37 |
+
* **Taobao**: click, cart, favorite, buy
|
| 38 |
+
* **MerRec**: like, cart, offer, checkout, purchase
|
| 39 |
+
|
| 40 |
+
## Quick Start
|
| 41 |
+
|
| 42 |
+
You can download a ready-to-use dataset from the UniRank repositories using the Hugging Face CLI:
|
| 43 |
+
|
| 44 |
+
```bash
|
| 45 |
+
hf download salmon1802/KuaiRand \
|
| 46 |
+
--repo-type dataset \
|
| 47 |
+
--local-dir /path/to/data/KuaiRand_Video_Action
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
Refer to the [GitHub repository](https://github.com/salmon1802/UniRank) for dataset preprocessing scripts, benchmark configurations, and evaluation toolkits.
|
| 51 |
+
|
| 52 |
+
## Citation
|
| 53 |
+
|
| 54 |
+
If you find UniRank useful in your research, please cite the paper:
|
| 55 |
+
|
| 56 |
+
```bibtex
|
| 57 |
+
@article{unirank2026,
|
| 58 |
+
title={UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction},
|
| 59 |
+
author={Anonymous Authors},
|
| 60 |
+
journal={arXiv preprint arXiv:2607.19987},
|
| 61 |
+
year={2026}
|
| 62 |
+
}
|
| 63 |
+
```
|