cornell-movie-review-data/rotten_tomatoes
Viewer • Updated • 10.7k • 65.8k • 115
This model is a fine-tuned version of distilbert-base-uncased for binary sentiment classification (positive/negative movie reviews).
from transformers import pipeline
classifier = pipeline("sentiment-analysis", model="Nav772/distilbert-rotten-tomatoes-sentiment")
result = classifier("This movie was great!")
print(result)