Views
No views yet
distilbert-base-uncased on the IMDB movie reviews dataset for binary sentiment classification (positive/negative). It was trained using Hugging Face's Trainer API.1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="Cydonia01/distilbert-imdb-fine-tuned")
4classifier("The movie was absolutely amazing!")