haritsahm
commited on
Commit
·
008689e
1
Parent(s):
771ba60
hotfix incorrect args
Browse files
app.py
CHANGED
@@ -268,7 +268,7 @@ def main():
|
|
268 |
|
269 |
with st.container():
|
270 |
st.write("Upload Image")
|
271 |
-
st.file_uploader(label='Upload image',type=['png','jpg','tif'], key='uploaded_image', on_change=image_preprocess_callback, args=(
|
272 |
|
273 |
result_image = None
|
274 |
canvas_input, canvas_output = st.columns(2)
|
|
|
268 |
|
269 |
with st.container():
|
270 |
st.write("Upload Image")
|
271 |
+
st.file_uploader(label='Upload image',type=['png','jpg','tif'], key='uploaded_image', on_change=image_preprocess_callback, args=(PREDICTOR_MODEL, option,), label_visibility="hidden")
|
272 |
|
273 |
result_image = None
|
274 |
canvas_input, canvas_output = st.columns(2)
|