Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -69,10 +69,10 @@ st.divider()
|
|
| 69 |
|
| 70 |
file_name = st.file_uploader("Choose an image...")
|
| 71 |
|
| 72 |
-
st.button("
|
| 73 |
|
| 74 |
|
| 75 |
-
if file_name is not None:
|
| 76 |
col1, col2 = st.columns(2)
|
| 77 |
image = Image.open(file_name)
|
| 78 |
image = ImageOps.exif_transpose(image)
|
|
|
|
| 69 |
|
| 70 |
file_name = st.file_uploader("Choose an image...")
|
| 71 |
|
| 72 |
+
#st.button("execute classification", type="primary")
|
| 73 |
|
| 74 |
|
| 75 |
+
if file_name is not None and st.button("execute classification"):
|
| 76 |
col1, col2 = st.columns(2)
|
| 77 |
image = Image.open(file_name)
|
| 78 |
image = ImageOps.exif_transpose(image)
|