This is an emotion analysis model trained to detect emotions in text. The model can classify text into different emotional categories.
This model is designed to analyze and classify emotions in text data. It can be used for:
The model was trained on emotion-labeled text data.
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="priyanshu-thapliyal/emotion-analysis")
4result = classifier("I am very happy today!")
5print(result)
@misc{emotion-analysis,
author = {Priyanshu Thapliyal},
title = {Emotion Analysis Model},
year = {2024}
}