CoolFace
Modelpublic

c-ram/roberta-amazon-reviews-sentiment

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes8downloads
Model Card

RoBERTa Amazon Reviews Sentiment Classifier

Fine-tuned version of roberta-base for 3-class sentiment classification (negative / neutral / positive) on Amazon product reviews.

Model Details

Performance

Evaluated on a held-out test set of 1,086 reviews:

ClassPrecisionRecallF1-ScoreSupport
Negative0.840.850.85361
Neutral0.770.710.74350
Positive0.860.910.89375
Macro avg0.820.820.821086
Weighted avg0.820.830.831086

Overall accuracy: 83%

Usage

python
from transformers import pipeline

classifier = pipeline("text-classification", model="c-ram/roberta-amazon-reviews-sentiment")
classifier("This product exceeded my expectations!")