Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -545,7 +545,7 @@ def analyze_video(video_file) -> Tuple[float, str, str]:
|
|
545 |
for emotion, score in sorted(emotions.items(), key=lambda x: x[1], reverse=True):
|
546 |
emotion_text += f"- {emotion}: {score:.1%}\n"
|
547 |
|
548 |
-
model_status = "
|
549 |
detailed_results = f"""
|
550 |
**Analysis Summary:**
|
551 |
- Neuroticism Score: {neuroticism_score:.3f}
|
|
|
545 |
for emotion, score in sorted(emotions.items(), key=lambda x: x[1], reverse=True):
|
546 |
emotion_text += f"- {emotion}: {score:.1%}\n"
|
547 |
|
548 |
+
model_status = " Real Model" if results['model_used'] == 'real' else "⚠️ Fallback Mode"
|
549 |
detailed_results = f"""
|
550 |
**Analysis Summary:**
|
551 |
- Neuroticism Score: {neuroticism_score:.3f}
|