Update app.py
Browse files
app.py
CHANGED
@@ -124,7 +124,7 @@ if uploaded_file is not None:
|
|
124 |
max_scale = int(data.shape[0] // 128)
|
125 |
scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden")
|
126 |
scale = int(scale.split("x")[0]) // 128
|
127 |
-
np.save("pred.npy", y_pred)
|
128 |
|
129 |
with col3:
|
130 |
detect = st.button('Detect')
|
|
|
124 |
max_scale = int(data.shape[0] // 128)
|
125 |
scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden")
|
126 |
scale = int(scale.split("x")[0]) // 128
|
127 |
+
# np.save("pred.npy", y_pred)
|
128 |
|
129 |
with col3:
|
130 |
detect = st.button('Detect')
|