stephaniestv's picture
Update README.md
778bd6e verified
---
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)