Transformers How to use ayjays132/EmotionVerse with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ayjays132/EmotionVerse") # Load model directly
from transformers import AutoTokenizer, ExtendedBertForMultiTask
tokenizer = AutoTokenizer.from_pretrained("ayjays132/EmotionVerse")
model = ExtendedBertForMultiTask.from_pretrained("ayjays132/EmotionVerse")