Spaces:
Runtime error
Runtime error
Commit
·
2bb0966
1
Parent(s):
10d9f51
Update app.py
Browse files
app.py
CHANGED
@@ -174,7 +174,8 @@ if uploaded_image is not None:
|
|
174 |
col6,col7 = st.columns(2)
|
175 |
with col6:
|
176 |
st.header("Uploded Image: ")
|
177 |
-
|
|
|
178 |
with col7:
|
179 |
celeb = result[0]['class']
|
180 |
st.header("Predicted Image: ")
|
|
|
174 |
col6,col7 = st.columns(2)
|
175 |
with col6:
|
176 |
st.header("Uploded Image: ")
|
177 |
+
dis_img = Image.open(display_image)
|
178 |
+
st.image(dis_img,width=130, caption='Uploaded Image')
|
179 |
with col7:
|
180 |
celeb = result[0]['class']
|
181 |
st.header("Predicted Image: ")
|