Daniel Cerda Escobar commited on
Commit
82792a7
Β·
1 Parent(s): 56e0661

Update app file

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -69,19 +69,19 @@ with col3:
69
  label = 'Select confidence threshold',
70
  min_value = 0.0,
71
  max_value = 1.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
  )
82
 
83
  st.write('##')
84
 
85
- col1, col2, col3 = st.columns([2, 1, 2])
86
  with col2:
87
  submit = st.button("πŸš€ Perform Prediction")
 
69
  label = 'Select confidence threshold',
70
  min_value = 0.0,
71
  max_value = 1.0,
72
+ value = 0.75,
73
+ step = 0.25
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.75,
80
+ step = 0.25
81
  )
82
 
83
  st.write('##')
84
 
85
+ col1, col2, col3 = st.columns(3, gap='large')
86
  with col2:
87
  submit = st.button("πŸš€ Perform Prediction")