google-research-datasets/go_emotions
Viewer • Updated • 265k • 22.8k • 260
Fine-tuned Qwen/Qwen2.5-1.5B for 4-class comment sentiment classification.
| Label | Description |
|---|---|
| positive | Admiration, joy, love, gratitude, etc. |
| negative | Anger, disgust, sadness, fear, etc. |
| neutral | Neutral statements |
| ambiguous | Surprise, confusion, curiosity, realization |
from transformers import pipeline
classifier = pipeline("text-classification", model="jovincia/qwen25-comment-classifier")
result = classifier("This product is amazing!")
print(result)
See the results/ folder for detailed evaluation and monitoring reports.