|
|
--- |
|
|
license: apache-2.0 |
|
|
language: |
|
|
- en |
|
|
pretty_name: Amazon Electronics Review Dataset |
|
|
tags: |
|
|
- text-classification |
|
|
- sentiment-analysis |
|
|
- electronics |
|
|
- reviews |
|
|
- amazon |
|
|
- english |
|
|
size_categories: |
|
|
- 100K<n<1M |
|
|
--- |
|
|
|
|
|
# π Amazon Electronics Review Dataset |
|
|
|
|
|
This dataset contains Amazon Electronics product reviews with sentiment. |
|
|
It was preprocessed to remove reviews without helpful vote and unverified purchases. |
|
|
|
|
|
|
|
|
## β
Features |
|
|
- **text**: The main review text written by customers. |
|
|
- **review_sentiment**: Positive, Negative, Neutral (classified using Mistral Large Language Model). |
|
|
- **verified_purchase**: Boolean flag indicating if purchase was verified. |
|
|
- **helpful_votes**: Number of helpful votes received. |
|
|
|
|
|
## π¦ Dataset Statistics |
|
|
- Total reviews: 176K+ |
|
|
- Language: English |
|
|
- Domain: Amazon Electronics |
|
|
|
|
|
## π¦ Source |
|
|
- The raw data used in this study originates from the Amazon Product Review dataset by McAuley Lab. |
|
|
|
|
|
## π Usage |
|
|
```python |
|
|
from datasets import load_dataset |
|
|
|
|
|
dataset = load_dataset("stephaniestv/Amazon_Electronics_Review") |
|
|
print(dataset) |
|
|
|