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
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,15 +1,13 @@
|
|
| 1 |
---
|
| 2 |
language: en
|
| 3 |
-
pipeline_tag: text-classification
|
| 4 |
-
library_name: transformers
|
| 5 |
tags:
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
license: mit
|
| 11 |
datasets:
|
| 12 |
-
|
| 13 |
---
|
| 14 |
|
| 15 |
# Emotional Support Strategy Classifier
|
|
|
|
| 1 |
---
|
| 2 |
language: en
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
+
- text-classification
|
| 5 |
+
- emotional-support
|
| 6 |
+
- empathy
|
| 7 |
+
- mental-health
|
| 8 |
license: mit
|
| 9 |
datasets:
|
| 10 |
+
- esconv
|
| 11 |
---
|
| 12 |
|
| 13 |
# Emotional Support Strategy Classifier
|