Text Classification
Transformers
TensorFlow
English
distilbert
generated_from_keras_callback
twitter
text-embeddings-inference
Instructions to use ZachBeesley/Tweet-Emotion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZachBeesley/Tweet-Emotion with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ZachBeesley/Tweet-Emotion")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ZachBeesley/Tweet-Emotion") model = AutoModelForSequenceClassification.from_pretrained("ZachBeesley/Tweet-Emotion") - Notebooks
- Google Colab
- Kaggle