Instructions to use Osiris/emotion_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Osiris/emotion_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Osiris/emotion_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Osiris/emotion_classifier") model = AutoModelForSequenceClassification.from_pretrained("Osiris/emotion_classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,4 +12,4 @@ LABEL_0: Negative (have negative emotion)
|
|
| 12 |
```
|
| 13 |
|
| 14 |
### Accuracy:
|
| 15 |
-
We reach 81.86% for validation dataset, and % for test dataset.
|
|
|
|
| 12 |
```
|
| 13 |
|
| 14 |
### Accuracy:
|
| 15 |
+
We reach 81.86% for validation dataset, and 81.29% for test dataset.
|