Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -815,10 +815,10 @@ elif page == "📊 Model Performance":
|
|
| 815 |
|
| 816 |
col1, col2, col3 = st.columns(3)
|
| 817 |
with col1:
|
| 818 |
-
st.metric("Precision", f"{overall.get(
|
| 819 |
st.metric("mAP@0.5", f"{overall.get('mAP50', 0):.3f}")
|
| 820 |
with col2:
|
| 821 |
-
st.metric("Recall", f"{overall.get(
|
| 822 |
st.metric("mAP@0.5:0.95", f"{overall.get('mAP50_95', 0):.3f}")
|
| 823 |
with col3:
|
| 824 |
st.metric("YOLO FPS", f"{speed.get('fps', 0):.2f}")
|
|
|
|
| 815 |
|
| 816 |
col1, col2, col3 = st.columns(3)
|
| 817 |
with col1:
|
| 818 |
+
st.metric("Precision", f"{overall.get('precision', 0):.3f}")
|
| 819 |
st.metric("mAP@0.5", f"{overall.get('mAP50', 0):.3f}")
|
| 820 |
with col2:
|
| 821 |
+
st.metric("Recall", f"{overall.get('recall', 0):.3f}")
|
| 822 |
st.metric("mAP@0.5:0.95", f"{overall.get('mAP50_95', 0):.3f}")
|
| 823 |
with col3:
|
| 824 |
st.metric("YOLO FPS", f"{speed.get('fps', 0):.2f}")
|