Update README.md
Browse files
README.md
CHANGED
|
@@ -2,6 +2,49 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
## Citation
|
| 6 |
|
| 7 |
If you use this dataset, please cite:
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# Amazon Reviews 2023 (7 Categories, Post-processed)
|
| 6 |
+
|
| 7 |
+
## Overview
|
| 8 |
+
This dataset is a curated and post-processed subset of Amazon Reviews 2023.
|
| 9 |
+
We select 7 product categories and apply a standard preprocessing pipeline widely used in sequential recommendation research.
|
| 10 |
+
We adopt the official absolute-timestamp split provided by the corpus.
|
| 11 |
+
|
| 12 |
+
## Included Categories
|
| 13 |
+
1. CDs_and_Vinyl
|
| 14 |
+
2. Video_Games
|
| 15 |
+
3. Toys_and_Games
|
| 16 |
+
4. Musical_Instruments
|
| 17 |
+
5. Grocery_and_Gourmet_Food
|
| 18 |
+
6. Arts_Crafts_and_Sewing
|
| 19 |
+
7. Office_Products
|
| 20 |
+
|
| 21 |
+
## Post-processing Pipeline
|
| 22 |
+
The dataset is processed per category as follows:
|
| 23 |
+
1. positive sample
|
| 24 |
+
We treat user-item interactions with user ratings greater than 3 as positive samples.
|
| 25 |
+
|
| 26 |
+
2. K-core filtering
|
| 27 |
+
To improve data quality, we remove users with fewer than 10
|
| 28 |
+
interactions in CDs and fewer than 5 interactions in the remaining
|
| 29 |
+
datasets.
|
| 30 |
+
|
| 31 |
+
## Directory Layout (per category)
|
| 32 |
+
Each category has its own folder containing:
|
| 33 |
+
item.csv: Primarily containing the remapped IDs for the items within that specific category.
|
| 34 |
+
|
| 35 |
+
train.csv: A file containing the interaction sequences used for training the model.
|
| 36 |
+
|
| 37 |
+
valid.csv: A dedicated directory containing the validation sequences to tune hyperparameters and prevent overfitting.
|
| 38 |
+
|
| 39 |
+
test.csv: A directory containing the test sequences.
|
| 40 |
+
|
| 41 |
+
## Licensing & Attribution
|
| 42 |
+
This dataset is derived from Amazon Reviews 2023. Please refer to the original dataset page for licensing/usage terms and attribution requirements:
|
| 43 |
+
|
| 44 |
+
* https://amazon-reviews-2023.github.io/
|
| 45 |
+
|
| 46 |
+
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.
|
| 47 |
+
|
| 48 |
## Citation
|
| 49 |
|
| 50 |
If you use this dataset, please cite:
|