Text Classification
Transformers
PyTorch
Safetensors
Russian
bert
russian
classification
emotion
emotion-detection
emotion-recognition
multiclass
Eval Results (legacy)
text-embeddings-inference
Instructions to use Aniemore/rubert-tiny2-russian-emotion-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Aniemore/rubert-tiny2-russian-emotion-detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Aniemore/rubert-tiny2-russian-emotion-detection")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Aniemore/rubert-tiny2-russian-emotion-detection") model = AutoModelForSequenceClassification.from_pretrained("Aniemore/rubert-tiny2-russian-emotion-detection") - Notebooks
- Google Colab
- Kaggle