Text Classification
Transformers
PyTorch
TensorBoard
bert
Generated from Trainer
text-embeddings-inference
Instructions to use Manirathinam21/bert_emo_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Manirathinam21/bert_emo_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Manirathinam21/bert_emo_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Manirathinam21/bert_emo_classifier") model = AutoModelForSequenceClassification.from_pretrained("Manirathinam21/bert_emo_classifier") - Notebooks
- Google Colab
- Kaggle
Commit ·
dd7ffb4
1
Parent(s): 29e05b1
commit
Browse files
README.md
CHANGED
|
@@ -21,12 +21,12 @@ It achieves the following results on the evaluation set:
|
|
| 21 |
## Target Labels
|
| 22 |
|
| 23 |
label: a classification label, with possible values including
|
| 24 |
-
- sadness :
|
| 25 |
-
- joy :
|
| 26 |
-
- love :
|
| 27 |
-
- anger :
|
| 28 |
-
- fear :
|
| 29 |
-
- surprise :
|
| 30 |
|
| 31 |
## Model description
|
| 32 |
|
|
|
|
| 21 |
## Target Labels
|
| 22 |
|
| 23 |
label: a classification label, with possible values including
|
| 24 |
+
- sadness : 0
|
| 25 |
+
- joy : 1
|
| 26 |
+
- love : 2
|
| 27 |
+
- anger : 3
|
| 28 |
+
- fear : 4
|
| 29 |
+
- surprise : 5
|
| 30 |
|
| 31 |
## Model description
|
| 32 |
|