Views
No views yet
distilbert-base-uncased on the IMDb dataset for binary sentiment classification.1from transformers import pipeline
2
3pipe = pipeline("text-classification", model="zeddy67/distilbert-imdb-sentiment")
4print(pipe("This movie was absolutely fantastic!"))