stanfordnlp/imdb
Viewer • Updated • 100k • 263k • 382
This is a fine-tuned version of distilbert-base-uncased on the IMDB sentiment dataset.
This model classifies movie reviews as positive or negative.
Based on the validation metrics, we selected the checkpoint at step 6000 (Epoch 2).
from transformers import pipeline
classifier = pipeline("sentiment-analysis", model="YOUR_USERNAME/distilbert-imdb-sentiment-graduation")
classifier("This movie was fantastic!")