Spaces:
Runtime error
Runtime error
alexrods
commited on
Commit
·
dc32b7d
1
Parent(s):
4e0c08c
add model output in app.py
Browse files
app.py
CHANGED
@@ -93,10 +93,10 @@ if file_imagen is not None:
|
|
93 |
output = segmentation(img)
|
94 |
if output is not None:
|
95 |
st.subheader("Segmentacion: ")
|
96 |
-
st.write(output.shape)
|
97 |
st.image(output[0], width=850)
|
98 |
st.subheader("Mask: ")
|
99 |
-
st.write(output.shape)
|
100 |
st.image(output[1], width=850)
|
101 |
|
102 |
# article = "<div style='text-align: center;'><a href='https://keras.io/examples/vision/deeplabv3_plus/' target='_blank'>Keras example by Praveen Kaushik</a></div>"
|
|
|
93 |
output = segmentation(img)
|
94 |
if output is not None:
|
95 |
st.subheader("Segmentacion: ")
|
96 |
+
# st.write(output.shape)
|
97 |
st.image(output[0], width=850)
|
98 |
st.subheader("Mask: ")
|
99 |
+
# st.write(output.shape)
|
100 |
st.image(output[1], width=850)
|
101 |
|
102 |
# article = "<div style='text-align: center;'><a href='https://keras.io/examples/vision/deeplabv3_plus/' target='_blank'>Keras example by Praveen Kaushik</a></div>"
|