Update app.py
Browse files
app.py
CHANGED
|
@@ -175,7 +175,7 @@ elif selected == 'Projects':
|
|
| 175 |
st.header('Architecture')
|
| 176 |
st.write('The model is of unet architecture to preserve the spatial informations in the images after applying Conv2D')
|
| 177 |
|
| 178 |
-
imgs = img_prep(['
|
| 179 |
col1,col2 = st.columns(2)
|
| 180 |
with col1:
|
| 181 |
st.image(imgs[0],use_column_width=False)
|
|
@@ -212,7 +212,7 @@ elif selected == 'Projects':
|
|
| 212 |
st.write('The Generator model is the prebuild tensorflow pix2pix generator model')
|
| 213 |
st.write('The Discriminator model is the discriminator model from the same module')
|
| 214 |
|
| 215 |
-
imgs = img_prep(['
|
| 216 |
col1,col2 = st.columns(2)
|
| 217 |
with col1:
|
| 218 |
st.image(imgs[0],use_column_width=False)
|
|
|
|
| 175 |
st.header('Architecture')
|
| 176 |
st.write('The model is of unet architecture to preserve the spatial informations in the images after applying Conv2D')
|
| 177 |
|
| 178 |
+
imgs = img_prep(['unet1.jpg','unet2.jpg'])
|
| 179 |
col1,col2 = st.columns(2)
|
| 180 |
with col1:
|
| 181 |
st.image(imgs[0],use_column_width=False)
|
|
|
|
| 212 |
st.write('The Generator model is the prebuild tensorflow pix2pix generator model')
|
| 213 |
st.write('The Discriminator model is the discriminator model from the same module')
|
| 214 |
|
| 215 |
+
imgs = img_prep(['cyclegan1.jpg','cyclegan2.jpg'])
|
| 216 |
col1,col2 = st.columns(2)
|
| 217 |
with col1:
|
| 218 |
st.image(imgs[0],use_column_width=False)
|