yogesh-venkat commited on
Commit
f53ca94
·
verified ·
1 Parent(s): daa39be

Update app.py

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