Beasto commited on
Commit
e33f773
·
1 Parent(s): 7e96eb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -2
app.py CHANGED
@@ -63,8 +63,19 @@ if selected == 'Tools and Experience':
63
  st.write('Pandas')
64
 
65
  st.write('# I have Experience in')
66
-
67
-
 
 
 
 
 
 
 
 
 
 
 
68
 
69
  elif selected == 'Projects':
70
  st.write(selected)
 
63
  st.write('Pandas')
64
 
65
  st.write('# I have Experience in')
66
+ col1,col2,col3,col4 = st.columns(4)
67
+ with col1:
68
+ st.image(loadimg('ANN'),use_column_width=False)
69
+ st.write("Artificial Neural Network")
70
+ with col2:
71
+ st.image(loadimg('cnn'),use_column_width=False)
72
+ st.write("Convolutional Neural Network")
73
+ with col3:
74
+ st.image(loadimg('GAN'),use_column_width=False)
75
+ st.write("Deep Convolutional Genertive Adversarial Network")
76
+ with col4:
77
+ st.image(loadimg('Cyclegan'),use_column_width=False)
78
+ st.write("Cycle Consistent Generative Adversarial Network")
79
 
80
  elif selected == 'Projects':
81
  st.write(selected)