Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -833,10 +833,10 @@ elif page == "📊 Model Performance":
|
|
| 833 |
|
| 834 |
col1, col2, col3 = st.columns(3)
|
| 835 |
with col1:
|
| 836 |
-
st.metric("Precision", f"{overall.get(
|
| 837 |
st.metric("mAP@0.5", f"{overall.get('mAP50', 0):.3f}")
|
| 838 |
with col2:
|
| 839 |
-
st.metric("Recall", f"{overall.get(
|
| 840 |
st.metric("mAP@0.5:0.95", f"{overall.get('mAP50_95', 0):.3f}")
|
| 841 |
with col3:
|
| 842 |
st.metric("YOLO FPS", f"{speed.get('fps', 0):.2f}")
|
|
|
|
| 833 |
|
| 834 |
col1, col2, col3 = st.columns(3)
|
| 835 |
with col1:
|
| 836 |
+
st.metric("Precision", f"{overall.get('precision', 0):.3f}")
|
| 837 |
st.metric("mAP@0.5", f"{overall.get('mAP50', 0):.3f}")
|
| 838 |
with col2:
|
| 839 |
+
st.metric("Recall", f"{overall.get('recall', 0):.3f}")
|
| 840 |
st.metric("mAP@0.5:0.95", f"{overall.get('mAP50_95', 0):.3f}")
|
| 841 |
with col3:
|
| 842 |
st.metric("YOLO FPS", f"{speed.get('fps', 0):.2f}")
|