Beasto commited on
Commit
9ba2fd6
·
verified ·
1 Parent(s): 7c37752

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(['imgs/unet1.jpg','imgs/unet2.jpg'])
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(['imgs/cyclegan1.jpg','imgs/cyclegan2.jpg'])
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)