Add dataset card with paper link, GitHub repository, and task categories
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,55 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- recommendation-systems
|
| 7 |
+
- sequential-recommendation
|
| 8 |
+
- ranking
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# UniRank: Benchmarking Ranking Models for Unified Sequential Modeling and Feature Interaction
|
| 12 |
+
|
| 13 |
+
[**GitHub**](https://github.com/salmon1802/UniRank) | [**Paper**](https://huggingface.co/papers/2607.19987)
|
| 14 |
+
|
| 15 |
+
UniRank is an open PyTorch benchmark and dataset suite for unified sequential modeling and feature interaction in large-scale recommendation ranking. It standardizes chronological point-wise autoregressive supervision, multi-feedback evaluation, model implementations, and distributed training in one reproducible pipeline.
|
| 16 |
+
|
| 17 |
+
This repository hosts preprocessed datasets from short-video, advertising, and e-commerce scenarios used in the benchmark.
|
| 18 |
+
|
| 19 |
+
## Datasets
|
| 20 |
+
|
| 21 |
+
The UniRank benchmark evaluates models on five large-scale industrial datasets:
|
| 22 |
+
|
| 23 |
+
| Dataset | Instances | Users | Items | Fields | Tasks | Avg. length | Max. length |
|
| 24 |
+
|:--|--:|--:|--:|--:|--:|--:|--:|
|
| 25 |
+
| QK-Video | 493,306,303 | 4,996,176 | 3,752,235 | 10 | 4 | 99 | 6,013 |
|
| 26 |
+
| KuaiRand | 323,464,444 | 27,285 | 32,038,725 | 40 | 6 | 11,855 | 228,030 |
|
| 27 |
+
| TAAC-25 | 757,207,146 | 7,706,778 | 15,707,425 | 30 | 2 | 98 | 100 |
|
| 28 |
+
| Taobao | 23,601,301 | 470,570 | 831,643 | 23 | 4 | 50 | 3,756 |
|
| 29 |
+
| MerRec | 172,304,959 | 1,697,072 | 42,577,610 | 20 | 5 | 102 | 26,576 |
|
| 30 |
+
|
| 31 |
+
## Quick Start
|
| 32 |
+
|
| 33 |
+
You can download a ready-to-use dataset from the UniRank benchmark via the Hugging Face CLI:
|
| 34 |
+
|
| 35 |
+
```bash
|
| 36 |
+
# Example: Download the KuaiRand dataset
|
| 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 complete instructions on training, evaluating, and extending the benchmark.
|
| 43 |
+
|
| 44 |
+
## Citation
|
| 45 |
+
|
| 46 |
+
If you use this benchmark or dataset in your research, please cite the UniRank 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 |
+
```
|