Ayushman Bhattacharya commited on
Commit ·
a3cde36
1
Parent(s): 141f922
Fix model path
Browse files
app.py
CHANGED
|
@@ -28,8 +28,8 @@ LABEL_MAP = {
|
|
| 28 |
|
| 29 |
classifier = pipeline(
|
| 30 |
"text-classification",
|
| 31 |
-
model="./emotion_model",
|
| 32 |
-
tokenizer="./emotion_model",
|
| 33 |
)
|
| 34 |
|
| 35 |
|
|
|
|
| 28 |
|
| 29 |
classifier = pipeline(
|
| 30 |
"text-classification",
|
| 31 |
+
model="./models/emotion_model",
|
| 32 |
+
tokenizer="./models/emotion_model",
|
| 33 |
)
|
| 34 |
|
| 35 |
|