Spaces:
Running
Running
update default params
Browse files
app.py
CHANGED
@@ -182,10 +182,10 @@ with col3:
|
|
182 |
"overlap_ratio", min_value=0.0, max_value=0.6, value=0.2, step=0.2
|
183 |
)
|
184 |
postprocess_type = st.selectbox(
|
185 |
-
"postprocess_type", options=["NMS", "GREEDYNMM"], index=
|
186 |
)
|
187 |
postprocess_match_metric = st.selectbox(
|
188 |
-
"postprocess_match_metric", options=["IOU", "IOS"], index=
|
189 |
)
|
190 |
postprocess_match_threshold = st.number_input(
|
191 |
"postprocess_match_threshold", value=0.5, step=0.1
|
|
|
182 |
"overlap_ratio", min_value=0.0, max_value=0.6, value=0.2, step=0.2
|
183 |
)
|
184 |
postprocess_type = st.selectbox(
|
185 |
+
"postprocess_type", options=["NMS", "GREEDYNMM"], index=0
|
186 |
)
|
187 |
postprocess_match_metric = st.selectbox(
|
188 |
+
"postprocess_match_metric", options=["IOU", "IOS"], index=0
|
189 |
)
|
190 |
postprocess_match_threshold = st.number_input(
|
191 |
"postprocess_match_threshold", value=0.5, step=0.1
|