Spaces:
Sleeping
Sleeping
Daniel Cerda Escobar
commited on
Commit
Β·
82792a7
1
Parent(s):
56e0661
Update app file
Browse files
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.
|
73 |
-
step = 0.
|
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.
|
80 |
-
step = 0.
|
81 |
)
|
82 |
|
83 |
st.write('##')
|
84 |
|
85 |
-
col1, col2, col3 = st.columns(
|
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")
|