Vineet commited on
Commit ·
f2cee5e
1
Parent(s): 72c6e93
Remove Overall Score and Flagged labels from Streamlit UI
Browse files- python-frontend/app.py +1 -4
python-frontend/app.py
CHANGED
|
@@ -386,10 +386,7 @@ for idx, msg in enumerate(st.session_state.messages):
|
|
| 386 |
CATEGORY PROBABILITIES
|
| 387 |
</div>
|
| 388 |
{render_categories(mod.get('categories', dict()))}
|
| 389 |
-
|
| 390 |
-
Overall Score: <strong style="color:#ef4444">{mod.get('overall_score', 0):.2%}</strong>
|
| 391 |
-
· Flagged: <strong style="color:#fbbf24">{flagged_str}</strong>
|
| 392 |
-
</div>
|
| 393 |
</div>
|
| 394 |
""", unsafe_allow_html=True)
|
| 395 |
|
|
|
|
| 386 |
CATEGORY PROBABILITIES
|
| 387 |
</div>
|
| 388 |
{render_categories(mod.get('categories', dict()))}
|
| 389 |
+
|
|
|
|
|
|
|
|
|
|
| 390 |
</div>
|
| 391 |
""", unsafe_allow_html=True)
|
| 392 |
|