roberta-large-goemotions 6df24d6
Isaac commited on
How to use IsaacZhy/roberta-large-goemotions with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="IsaacZhy/roberta-large-goemotions") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("IsaacZhy/roberta-large-goemotions")
model = AutoModelForSequenceClassification.from_pretrained("IsaacZhy/roberta-large-goemotions")