stanfordnlp/imdb
Viewer • Updated • 100k • 181k • 472
Fine-tuned distilbert-base-uncased for binary sentiment classification.
Classify English text as positive or negative.
Accuracy: 0.869
Precision: 0.878
Recall: 0.858
F1: 0.868
from transformers import pipeline
classifier = pipeline( "sentiment-analysis", model="Rameen191/sentiment-tutorial" )
classifier("This was a great experience!")