Add dataset card, link to paper and code

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-retrieval
4
+ license: other
5
+ ---
6
+
7
+ # AL-GR
8
+
9
+ AL-GR is an industrial-scale dataset comprising 14 billion interactions and 250 million items with corresponding multimodal features collected from Taobao. It was introduced in the paper [FORGE: Forming Semantic Identifiers for Generative Retrieval in Industrial Datasets](https://huggingface.co/papers/2509.20904).
10
+
11
+ The dataset is designed to benchmark the construction and evaluation of Semantic Identifiers (SIDs) for generative retrieval (GR) in recommendation systems.
12
+
13
+ - **Paper:** [FORGE: Forming Semantic Identifiers for Generative Retrieval in Industrial Datasets](https://huggingface.co/papers/2509.20904)
14
+ - **GitHub Repository:** [https://github.com/selous123/al_sid](https://github.com/selous123/al_sid)
15
+ - **Project Page:** [https://huggingface.co/AL-GR](https://huggingface.co/AL-GR)
16
+
17
+ ## Sample Usage
18
+
19
+ You can load the "Tiny" version of the dataset using the following code:
20
+
21
+ ```python
22
+ from datasets import load_dataset
23
+
24
+ # Login using e.g. `huggingface-cli login` to access this dataset
25
+ dataset = load_dataset("AL-GR/AL-GR-Tiny", data_files="train_data/s1_tiny.csv", split="train")
26
+ ```
27
+
28
+ ## Citation
29
+
30
+ ```bibtex
31
+ @article{fu2025forge,
32
+ title={FORGE: Forming Semantic Identifiers for Generative Retrieval in Industrial Datasets},
33
+ author={Fu, Kairui and Zhang, Tao and Xiao, Shuwen and Wang, Ziyang and Zhang, Xinming and Zhang, Chenchi and Yan, Yuliang and Zheng, Junjun and others},
34
+ journal={arXiv preprint arXiv:2509.20904},
35
+ year={2025}
36
+ }
37
+ ```