stanfordnlp/imdb
Viewer • Updated • 100k • 205k • 1.11k
A fine-tuned version of distilbert-base-uncased for binary sentiment classification (positive/negative) on movie reviews.
| Metric | Score |
|---|---|
| Accuracy | 0.888 |
| F1 | 0.889763779527559 |
from transformers import pipeline
classifier = pipeline("sentiment-analysis", model="authoy6788/review-recognizer")
result = classifier("This movie was fantastic!")
print(result)
This model was trained on a small subset of English-language movie reviews. It may perform poorly on out-of-domain text (e.g., other languages, non-review text, or very different writing styles).
Base model
distilbert/distilbert-base-uncased