Transformers How to use poison-texts/imdb-sentiment-analysis-clean with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="poison-texts/imdb-sentiment-analysis-clean") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("poison-texts/imdb-sentiment-analysis-clean")
model = AutoModelForSequenceClassification.from_pretrained("poison-texts/imdb-sentiment-analysis-clean")