Upload 2 files
Browse files- README.md +9 -0
- config.json +13 -0
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Emotion Detection Model
|
| 2 |
+
|
| 3 |
+
This model is trained using TF-IDF and Logistic Regression.
|
| 4 |
+
|
| 5 |
+
## Labels
|
| 6 |
+
- happy
|
| 7 |
+
- sad
|
| 8 |
+
- angry
|
| 9 |
+
- fear
|
config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "logistic_regression",
|
| 3 |
+
"task": "text-classification",
|
| 4 |
+
"framework": "scikit-learn",
|
| 5 |
+
"pipeline_tag": "text-classification",
|
| 6 |
+
"language": "en",
|
| 7 |
+
"labels": [
|
| 8 |
+
"happy",
|
| 9 |
+
"sad",
|
| 10 |
+
"angry",
|
| 11 |
+
"fear"
|
| 12 |
+
]
|
| 13 |
+
}
|