Daniel Cerda Escobar commited on
Commit
9448fdb
·
1 Parent(s): 9af4bab

Update app file

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -64,7 +64,7 @@ with col2:
64
  st.image(image, use_column_width = True)
65
 
66
  with col3:
67
- st.markdown('#### Set model parameters')
68
  postprocess_match_threshold = st.slider(
69
  label = 'Select confidence threshold',
70
  min_value = 0.0,
@@ -72,3 +72,10 @@ with col3:
72
  value = 0.8,
73
  step = 0.05
74
  )
 
 
 
 
 
 
 
 
64
  st.image(image, use_column_width = True)
65
 
66
  with col3:
67
+ st.markdown('##### Set model parameters')
68
  postprocess_match_threshold = st.slider(
69
  label = 'Select confidence threshold',
70
  min_value = 0.0,
 
72
  value = 0.8,
73
  step = 0.05
74
  )
75
+ postprocess_match_metric = st.slider(
76
+ label = 'Select IoU threshold',
77
+ min_value = 0.0,
78
+ max_value = 1.0,
79
+ value = 0.8,
80
+ step = 0.05
81
+ )