Spaces:
Runtime error
Runtime error
Daniel Cerda Escobar
commited on
Commit
·
7002e2c
1
Parent(s):
ad6973a
Deactivate postprocess_type
Browse files
app.py
CHANGED
@@ -206,7 +206,7 @@ with col3:
|
|
206 |
postprocess_match_threshold = st.number_input(
|
207 |
"postprocess_match_threshold", value=0.5, step=0.1
|
208 |
)
|
209 |
-
postprocess_class_agnostic = st.checkbox("postprocess_class_agnostic", value=True)
|
210 |
|
211 |
col1, col2, col3 = st.columns([4, 3, 4])
|
212 |
with col2:
|
@@ -233,10 +233,10 @@ if submit:
|
|
233 |
slice_width=slice_size,
|
234 |
overlap_height_ratio=overlap_ratio,
|
235 |
overlap_width_ratio=overlap_ratio,
|
236 |
-
postprocess_type=postprocess_type,
|
237 |
-
postprocess_match_metric=postprocess_match_metric,
|
238 |
postprocess_match_threshold=postprocess_match_threshold,
|
239 |
-
postprocess_class_agnostic=postprocess_class_agnostic,
|
240 |
)
|
241 |
|
242 |
st.session_state["output_1"] = output_1
|
|
|
206 |
postprocess_match_threshold = st.number_input(
|
207 |
"postprocess_match_threshold", value=0.5, step=0.1
|
208 |
)
|
209 |
+
#postprocess_class_agnostic = st.checkbox("postprocess_class_agnostic", value=True)
|
210 |
|
211 |
col1, col2, col3 = st.columns([4, 3, 4])
|
212 |
with col2:
|
|
|
233 |
slice_width=slice_size,
|
234 |
overlap_height_ratio=overlap_ratio,
|
235 |
overlap_width_ratio=overlap_ratio,
|
236 |
+
#postprocess_type=postprocess_type,
|
237 |
+
#postprocess_match_metric=postprocess_match_metric,
|
238 |
postprocess_match_threshold=postprocess_match_threshold,
|
239 |
+
#postprocess_class_agnostic=postprocess_class_agnostic,
|
240 |
)
|
241 |
|
242 |
st.session_state["output_1"] = output_1
|