cardiffnlp/tweet_eval
Viewer • Updated • 201k • 32.5k • 144
How to use adorkin/xlm-roberta-en-ru-emoji with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="adorkin/xlm-roberta-en-ru-emoji") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("adorkin/xlm-roberta-en-ru-emoji")
model = AutoModelForSequenceClassification.from_pretrained("adorkin/xlm-roberta-en-ru-emoji")