The model performs multi-class emotion classification on English text and predicts the following labels:
No architectural changes or retraining have been performed. The only modification is the conversion of model weights to the safetensors format.
If you use this model in academic work, please cite the original author.
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="YOUR_USERNAME/YOUR_REPO_NAME",
6 return_all_scores=True
7)
8
9classifier("I love this!")