yogesh-venkat commited on
Commit
02c2a42
·
verified ·
1 Parent(s): f4805b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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("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}")
 
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}")