Text Classification
Transformers
Safetensors
English
roberta
emotional-support
empathy
mental-health
Instructions to use RyanDDD/empathy-strategy-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RyanDDD/empathy-strategy-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="RyanDDD/empathy-strategy-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("RyanDDD/empathy-strategy-classifier") model = AutoModelForSequenceClassification.from_pretrained("RyanDDD/empathy-strategy-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
#1
by coding-zzz-oe - opened
README.md
CHANGED
|
@@ -8,6 +8,7 @@ tags:
|
|
| 8 |
license: mit
|
| 9 |
datasets:
|
| 10 |
- esconv
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# Emotional Support Strategy Classifier
|
|
@@ -70,4 +71,4 @@ If you use this model, please cite the ESConv dataset:
|
|
| 70 |
booktitle={Proceedings of ACL},
|
| 71 |
year={2021}
|
| 72 |
}
|
| 73 |
-
```
|
|
|
|
| 8 |
license: mit
|
| 9 |
datasets:
|
| 10 |
- esconv
|
| 11 |
+
library_name: transformers
|
| 12 |
---
|
| 13 |
|
| 14 |
# Emotional Support Strategy Classifier
|
|
|
|
| 71 |
booktitle={Proceedings of ACL},
|
| 72 |
year={2021}
|
| 73 |
}
|
| 74 |
+
```
|