Views
No views yet
textattack/roberta-base-imdb, a RoBERTa sequence-classification model fine-tuned for IMDB sentiment analysis.imdb_top_500.csv0 = negative, 1 = positive1from transformers import pipeline
2
3classifier = pipeline(
4 "sentiment-analysis",
5 model="ceilf6/imdb-sentiment-roberta",
6 tokenizer="ceilf6/imdb-sentiment-roberta",
7)
8print(classifier("This movie is great and deeply moving."))0.92.