Add paper link, code link, and task category
Browse filesThis PR improves the dataset card by adding the `other` task category and relevant tags for recommendation systems. It also includes links to the associated research paper ("ManCAR: Manifold-Constrained Latent Reasoning with Adaptive Test-Time Computation for Sequential Recommendation") and the official GitHub repository for easier access to the implementation.
README.md
CHANGED
|
@@ -1,9 +1,16 @@
|
|
| 1 |
---
|
| 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.
|
|
@@ -29,13 +36,13 @@ The dataset is processed per category as follows:
|
|
| 29 |
|
| 30 |
## Directory Layout (per category)
|
| 31 |
Each category has its own folder containing:
|
| 32 |
-
* item.csv
|
| 33 |
|
| 34 |
-
* train.csv
|
| 35 |
|
| 36 |
-
* valid.csv
|
| 37 |
|
| 38 |
-
* test.csv
|
| 39 |
|
| 40 |
## Licensing & Attribution
|
| 41 |
This dataset is derived from Amazon Reviews 2023. Please refer to the original dataset page for licensing/usage terms and attribution requirements:
|
|
@@ -54,4 +61,5 @@ If you use this dataset, please cite:
|
|
| 54 |
author={Kun Yang, Yuxuan Zhu, Yazhe Chen, Siyao Zheng, Bangyang Hong, Kangle Wu, Yabo Ni, Anxiang Zeng, Cong Fu, Hui Li},
|
| 55 |
journal={arXiv preprint arXiv:2602.20093},
|
| 56 |
year={2026}
|
| 57 |
-
}
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- recommendation-system
|
| 7 |
+
- sequential-recommendation
|
| 8 |
---
|
| 9 |
|
| 10 |
# Amazon Reviews 2023 (7 Categories, Post-processed)
|
| 11 |
|
| 12 |
+
[**Paper**](https://huggingface.co/papers/2602.20093) | [**Code**](https://github.com/FuCongResearchSquad/ManCAR)
|
| 13 |
+
|
| 14 |
## Overview
|
| 15 |
This dataset is a curated and post-processed subset of Amazon Reviews 2023.
|
| 16 |
We select 7 product categories and apply a standard preprocessing pipeline widely used in sequential recommendation research.
|
|
|
|
| 36 |
|
| 37 |
## Directory Layout (per category)
|
| 38 |
Each category has its own folder containing:
|
| 39 |
+
* `item.csv`: Primarily containing the remapped IDs for the items within that specific category.
|
| 40 |
|
| 41 |
+
* `train.csv`: A file containing the interaction sequences used for training the model.
|
| 42 |
|
| 43 |
+
* `valid.csv`: A dedicated directory containing the validation sequences to tune hyperparameters and prevent overfitting.
|
| 44 |
|
| 45 |
+
* `test.csv`: A directory containing the test sequences.
|
| 46 |
|
| 47 |
## Licensing & Attribution
|
| 48 |
This dataset is derived from Amazon Reviews 2023. Please refer to the original dataset page for licensing/usage terms and attribution requirements:
|
|
|
|
| 61 |
author={Kun Yang, Yuxuan Zhu, Yazhe Chen, Siyao Zheng, Bangyang Hong, Kangle Wu, Yabo Ni, Anxiang Zeng, Cong Fu, Hui Li},
|
| 62 |
journal={arXiv preprint arXiv:2602.20093},
|
| 63 |
year={2026}
|
| 64 |
+
}
|
| 65 |
+
```
|