SATA is a PyTorch-based transformer model fine-tuned for emotion (sentiment) classification on English text. It is built on top of the roberta-base architecture and trained using the Hugging Face emotion dataset.
The goal of this model is to classify short pieces of text into one of several core emotional categories. SATA is designed to be simple to use, reproducible, and easily deployable via the Hugging Face ecosystem.
The model was trained using a custom PyTorch training loop (no Hugging Face Trainer abstraction).
Accuracy was measured on the official validation split of the Emotion dataset.
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="captainaraf/sata"
6)
7
8classifier("I am extremely happy today")