Ricardoly commited on
Commit
b5c32d5
·
verified ·
1 Parent(s): e2f9479

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +118 -3
README.md CHANGED
@@ -1,3 +1,118 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - recommender-systems
6
+ - sequential-recommendation
7
+ - amazon-reviews
8
+ - side-information
9
+ pretty_name: Amazon Reviews 2023 (10 Categories, Post-processed)
10
+ license: mit
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Amazon Reviews 2023 (10 Categories, Post-processed)
16
+
17
+ ## Overview
18
+ This dataset is a curated and post-processed subset of **Amazon Reviews 2023**. We select **10 product categories** and apply a standard preprocessing pipeline widely used in sequential recommendation research. The resulting dataset provides user interaction sequences along with structured item side information.
19
+
20
+ - **Original source**: https://amazon-reviews-2023.github.io/
21
+ - **Categories**: 10
22
+ - **Content**: user interaction sequences + structured item features
23
+ - **Splits**: `train`, `valid`, `test`
24
+
25
+ > This dataset is derived from Amazon Reviews 2023 and is intended for research use.
26
+
27
+ ---
28
+
29
+ ## Included Categories (alphabetical)
30
+
31
+ 1. Arts_Crafts_and_Sewing
32
+ 2. Baby_Products
33
+ 3. Beauty_and_Personal_Care
34
+ 4. Books
35
+ 5. Health_and_Household
36
+ 6. Industrial_and_Scientific
37
+ 7. Musical_Instruments
38
+ 8. Sports_and_Outdoors
39
+ 9. Toys_and_Games
40
+ 10. Video_Games
41
+
42
+ ### Why these 10 categories?
43
+ We chose these categories because after filtering items with missing structured side information, the remaining number of interactions does not drop significantly compared to many other categories.
44
+
45
+ ---
46
+
47
+ ## Post-processing Pipeline
48
+
49
+ The dataset is processed **per category** as follows:
50
+
51
+ 1. **5-core filtering**
52
+ Users and items with fewer than five interactions are removed.
53
+
54
+ 2. **Chronological ordering**
55
+ The remaining interactions are sorted by time to form user behavior sequences.
56
+
57
+ 3. **Leave-one-out split**
58
+ A leave-one-out strategy is used to construct `train/valid/test` splits from each user’s chronological sequence.
59
+
60
+ 4. **Ensure valid evaluation targets**
61
+ If a target item in an evaluation split does not appear in the training data, it is added to the training set to ensure valid evaluation.
62
+
63
+ 5. **Structured side information extraction and filtering**
64
+ For each item, we extract structured side information (store identifier and 1st/2nd/3rd-level category identifiers). Items missing any of these fields are filtered out, and interactions involving them are removed accordingly.
65
+
66
+ ---
67
+
68
+ ## Directory Layout (per category)
69
+
70
+ Each category has its own folder containing:
71
+
72
+ - `item_feature_explain.json`
73
+ Statistics for each item-side feature. For each feature, `id_num` is defined as **(#unique values in this category) + 1**, where the extra `+1` slot is reserved for a **mask token**.
74
+
75
+ - `item_feature/`
76
+ A Parquet table storing the structured side information for each item.
77
+
78
+ - `train/`
79
+ A Parquet dataset storing training user sequences.
80
+
81
+ - `valid/`
82
+ A Parquet dataset storing validation user sequences.
83
+
84
+ - `test/`
85
+ A Parquet dataset storing test user sequences.
86
+
87
+ ---
88
+
89
+ ## Intended Use
90
+ This dataset is intended for research on:
91
+ - Sequential recommendation / next-item prediction
92
+ - Methods that incorporate structured item side information
93
+
94
+ It is not intended for user identification or any high-stakes decision-making.
95
+
96
+ ---
97
+
98
+ ## Licensing & Attribution
99
+ This dataset is derived from Amazon Reviews 2023. Please refer to the original dataset page for licensing/usage terms and attribution requirements:
100
+
101
+ - https://amazon-reviews-2023.github.io/
102
+
103
+ If you use this processed dataset, please cite the original dataset and clearly state that you used a post-processed subset with the pipeline described above.
104
+
105
+ ---
106
+
107
+ ## Citation
108
+ ```bibtex
109
+ @misc{ReSID,
110
+ title={Rethinking Generative Recommender Tokenizer: Recsys-Native Encoding and Semantic Quantization Beyond LLMs},
111
+ author={Yu Liang and Zhongjin Zhang and Yuxuan Zhu and Kerui Zhang and Zhiluohan Guo and Wenhang Zhou and Zonqi Yang and Kangle Wu and Yabo Ni and Anxiang Zeng and Cong Fu and Jianxin Wang and Jiazhi Xia},
112
+ year={2026},
113
+ eprint={2602.02338},
114
+ archivePrefix={arXiv},
115
+ primaryClass={cs.IR},
116
+ url={https://arxiv.org/abs/2602.02338},
117
+ }
118
+ ```