Daniel Cerda Escobar commited on
Commit
c72147b
·
1 Parent(s): 4d1e216

Update app file

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -60,4 +60,14 @@ with col3:
60
  else:
61
  image = sahi.utils.cv.read_image_as_pil(IMAGE_TO_URL[radio])
62
  with st.container(border = True):
63
- st.image(image, use_column_width = True)
 
 
 
 
 
 
 
 
 
 
 
60
  else:
61
  image = sahi.utils.cv.read_image_as_pil(IMAGE_TO_URL[radio])
62
  with st.container(border = True):
63
+ st.image(image, use_column_width = True)
64
+
65
+ st.write('##')
66
+
67
+ col1, col2, col3 = st.columns(3, gap='medium')
68
+ with col2:
69
+ st.markdown('#### Set model parameters')
70
+ postprocess_match_threshold = st.select_slider(
71
+ 'Select confidence threshold',
72
+ value = (0,1)
73
+ )