Update app.py
Browse files
app.py
CHANGED
|
@@ -155,7 +155,12 @@ def process_image(uploaded_file):
|
|
| 155 |
# 🗂️ Interface principal
|
| 156 |
st.title("IA Model Segmentation")
|
| 157 |
upload_option = st.radio("Choose upload type:", ["Single image", "Image folder"])
|
| 158 |
-
st.caption(f"Version {APP_VERSION}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
results = []
|
| 160 |
|
| 161 |
if upload_option == "Single image":
|
|
|
|
| 155 |
# 🗂️ Interface principal
|
| 156 |
st.title("IA Model Segmentation")
|
| 157 |
upload_option = st.radio("Choose upload type:", ["Single image", "Image folder"])
|
| 158 |
+
st.caption(f"Version {APP_VERSION}")
|
| 159 |
+
st.markdown(
|
| 160 |
+
f"<hr><small>Model version: {APP_VERSION}</small>",
|
| 161 |
+
unsafe_allow_html=True
|
| 162 |
+
)
|
| 163 |
+
|
| 164 |
results = []
|
| 165 |
|
| 166 |
if upload_option == "Single image":
|