File size: 3,440 Bytes
aa35893 8905098 7a7c7dd 8905098 7a7c7dd 8905098 7a7c7dd 8905098 7a7c7dd b39a865 7a7c7dd b39a865 7a7c7dd b39a865 7a7c7dd aa35893 8905098 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | ---
license: apache-2.0
task_categories:
- text-generation
- feature-extraction
language:
- en
tags:
- e-commerce
- products
- amazon
- recommendations
size_categories:
- 1K<n<10K
dataset_info:
config_name: test_cases
features:
- name: id
dtype: int64
- name: name
dtype: string
- name: query
dtype: string
- name: expected_tools
dtype: string
- name: expected_category
dtype: string
- name: success_criteria
dtype: string
- name: difficulty
dtype: string
- name: notes
dtype: string
splits:
- name: train
num_bytes: 2306
num_examples: 10
download_size: 5551
dataset_size: 2306
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- config_name: test_cases
data_files:
- split: train
path: test_cases/train-*
---
# Amazon Products Sample Dataset
A curated sample of 2,000 popular products from the Amazon Reviews 2023 dataset, designed for educational use in building RAG (Retrieval-Augmented Generation) systems and shopping agents.
## Dataset Description
This dataset contains product metadata across 4 categories:
- **Electronics** (500 products)
- **Video Games** (500 products)
- **Books** (500 products)
- **Home & Kitchen** (500 products)
Products were filtered to include only those with 500+ reviews, ensuring recognizable, well-documented items.
## Dataset Structure
Each product includes:
- `parent_asin`: Unique product identifier
- `title`: Product title
- `description`: Product description (list of strings)
- `price`: Listed price (string)
- `price_numeric`: Price as float
- `average_rating`: Average star rating (1-5)
- `rating_number`: Number of reviews
- `features`: Product features (list)
- `categories`: Category hierarchy (list)
- `category`: Simplified category label
- `store`: Store/brand name
- `images`: Product images (list of dicts)
- `main_category`: Original main category
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("gatech-scheller-ai-in-business/amazon-products")
df = dataset['train'].to_pandas()
# Filter by category
electronics = df[df['category'] == 'Electronics']
```
## Source & Citation
This dataset is derived from the **Amazon Reviews 2023** dataset compiled by the McAuley Lab at UC San Diego.
**Original Dataset**: [McAuley-Lab/Amazon-Reviews-2023](https://huggingface.co/datasets/McAuley-Lab/Amazon-Reviews-2023)
**Project Page**: https://amazon-reviews-2023.github.io/
If you use this data, please cite the original work:
```bibtex
@article{hou2024bridging,
title={Bridging Language and Items for Retrieval and Recommendation},
author={Hou, Yupeng and Li, Jiacheng and He, Zhankui and Yan, An and Chen, Xiusi and McAuley, Julian},
journal={arXiv preprint arXiv:2403.03952},
year={2024}
}
```
## License
This dataset follows the licensing terms of the original Amazon Reviews 2023 dataset. It is intended for research and educational purposes only.
## Intended Use
This dataset was created for the Georgia Tech Scheller College of Business course on AI in Business, specifically for assignments involving:
- Building RAG systems for product search
- Creating tool-using LLM agents
- E-commerce recommendation systems
## Limitations
- Products are filtered by review count (500+ reviews), which may introduce popularity bias
- Prices and availability may be outdated
- Not intended for production e-commerce applications
|