Transformers How to use dasdristanta13/twitter-emotion-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="dasdristanta13/twitter-emotion-model") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("dasdristanta13/twitter-emotion-model")
model = AutoModel.from_pretrained("dasdristanta13/twitter-emotion-model")