Spaces:
Sleeping
Sleeping
Daniel Cerda Escobar
commited on
Commit
·
7520ea1
1
Parent(s):
10121ec
Update app file
Browse files
app.py
CHANGED
@@ -68,8 +68,10 @@ st.write('##')
|
|
68 |
col1, col2, col3 = st.columns(3, gap='medium')
|
69 |
with col2:
|
70 |
st.markdown('#### Set model parameters')
|
71 |
-
postprocess_match_threshold = st.
|
72 |
-
'Select confidence threshold',
|
73 |
-
|
74 |
-
|
|
|
|
|
75 |
)
|
|
|
68 |
col1, col2, col3 = st.columns(3, gap='medium')
|
69 |
with col2:
|
70 |
st.markdown('#### Set model parameters')
|
71 |
+
postprocess_match_threshold = st.slider(
|
72 |
+
label = 'Select confidence threshold',
|
73 |
+
min_value = 0,
|
74 |
+
max_value = 1,
|
75 |
+
value = 0.8,
|
76 |
+
step = 0.05
|
77 |
)
|