Update app.py
Browse files
app.py
CHANGED
@@ -1187,7 +1187,7 @@ def predict_depression(text: str):
|
|
1187 |
combined_score = (kobert_score * 0.55) + (xgb_proba * 0.45)
|
1188 |
if combined_score > 0.78:
|
1189 |
label = "μλ΄ κΆμ₯"
|
1190 |
-
elif combined_score > 0.
|
1191 |
label = "κ΄μ¬ νμ"
|
1192 |
else:
|
1193 |
label = "μ μ"
|
|
|
1187 |
combined_score = (kobert_score * 0.55) + (xgb_proba * 0.45)
|
1188 |
if combined_score > 0.78:
|
1189 |
label = "μλ΄ κΆμ₯"
|
1190 |
+
elif combined_score > 0.7:
|
1191 |
label = "κ΄μ¬ νμ"
|
1192 |
else:
|
1193 |
label = "μ μ"
|