alexrods commited on
Commit
437c4f5
·
1 Parent(s): dc32b7d

add model output in app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -94,10 +94,10 @@ if file_imagen is not None:
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>"
103
  # gr.Interface(segmentation, i, o, examples=examples, allow_flagging=False, analytics_enabled=False,
 
94
  if output is not None:
95
  st.subheader("Segmentacion: ")
96
  # st.write(output.shape)
97
+ st.image(output[0], width=400)
98
  st.subheader("Mask: ")
99
  # st.write(output.shape)
100
+ st.image(output[1], width=400)
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>"
103
  # gr.Interface(segmentation, i, o, examples=examples, allow_flagging=False, analytics_enabled=False,