Beasto commited on
Commit
894b9dd
·
1 Parent(s): 58cd0b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -41
app.py CHANGED
@@ -35,77 +35,61 @@ if selected == 'About me':
35
  st.write('I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
36
  st.write('---')
37
  if selected == 'Tools and Experience':
38
-
39
- st.write('# Below are the tools I use to train AI and the Machine Learning and Deep Learning models I have expertise in')
 
 
 
 
40
  st.write('# Tools I use to train AI')
41
  col1,col2,col3,col4 = st.columns(4)
42
  with col1:
43
- st.image(loadimg('python.jpg'),use_column_width=False)
44
- st.write("Python")
45
  with col2:
46
- st.image(loadimg('tensorflow.png'),use_column_width=False)
47
- st.write('Tensorflow')
48
  with col3:
49
- st.image(loadimg('numpy.png'),use_column_width=False)
50
- st.write('Numpy')
51
-
52
  with col4:
53
- st.image(loadimg('keras.png'),use_column_width=False)
54
- st.write('Keras')
55
 
56
  _,col1,col2,col3,_ = st.columns(5)
57
  with col1:
58
- st.image(loadimg('matplotlib.png'),use_column_width=False)
59
- st.write('Matplotlib')
60
  with col2:
61
- st.image(loadimg('kaggle.png'),use_column_width=False)
62
- st.write('Kaggle')
63
  with col3:
64
- st.image(loadimg('pandas.png'),use_column_width=False)
65
- st.write('Pandas')
66
 
67
  st.write('# I have Experience in')
68
  col1,col2,col3,col4 = st.columns(4)
69
  with col1:
70
- st.image(loadimg('ANN.png'),use_column_width=False)
71
- st.write("Artificial Neural Network")
72
  with col2:
73
- st.image(loadimg('cnn.jpg'),use_column_width=False)
74
- st.write("Convolutional Neural Network")
75
  with col3:
76
- st.image(loadimg('GAN.png'),use_column_width=False)
77
- st.write("Deep Convolutional Genertive Adversarial Network")
78
  with col4:
79
- st.image(loadimg('Cyclegan.jpg'),use_column_width=False)
80
- st.write("Cycle Consistent Generative Adversarial Network")
81
 
82
  col1,col2,col3,col4 = st.columns(4)
83
  with col1:
84
- st.image(loadimg('pix2pix.png'),use_column_width=False)
85
- st.write("Pix2Pix")
86
  with col2:
87
- st.image(loadimg('Yolo.jpg'),use_column_width=False)
88
- st.write("Object Detection using YOLO")
89
  with col3:
90
- st.image(loadimg('Unet.png'),use_column_width=False)
91
- st.write("Unet model for semantic segmentation")
92
  with col4:
93
- st.image(loadimg('segyolo.jpg'),use_column_width=False)
94
- st.write("Instance Segmentation using YOLO")
95
 
96
  col1,col2,col3,col4 = st.columns(4)
97
  with col1:
98
- st.image(loadimg('Linear.png'),use_column_width=False)
99
- st.write("Linear Regression")
100
  with col2:
101
- st.image(loadimg('logistic.png'),use_column_width=False)
102
- st.write("Logistic Regression")
103
  with col3:
104
- st.image(loadimg('naive bayes.png'),use_column_width=False)
105
- st.write("Naive Bayes Classifier")
106
  with col4:
107
- st.image(loadimg('DecisionTree.png'),use_column_width=False)
108
- st.write("Decision Tree Classiifer")
109
 
110
  elif selected == 'Projects':
111
  st.write(selected)
 
35
  st.write('I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
36
  st.write('---')
37
  if selected == 'Tools and Experience':
38
+ st.header('Tools and Experience')
39
+ col1,col2 = st.columns(2)
40
+ with col1:
41
+ st.write('Below are the tools I use to train AI and the Machine Learning and Deep Learning models I have expertise in')
42
+ with col2:
43
+ st_lottie(lottiemaker('Tools.json'),speed=1,width=200,height=200)
44
  st.write('# Tools I use to train AI')
45
  col1,col2,col3,col4 = st.columns(4)
46
  with col1:
47
+ st.button('Python')
 
48
  with col2:
49
+ st.button('Tensorflow')
 
50
  with col3:
51
+ st.button('Numpy')
 
 
52
  with col4:
53
+ st.button('Keras')
 
54
 
55
  _,col1,col2,col3,_ = st.columns(5)
56
  with col1:
57
+ st.button("Matplotlib")
 
58
  with col2:
59
+ st.button('Pandas')
 
60
  with col3:
61
+ st.button('Kaggle')
 
62
 
63
  st.write('# I have Experience in')
64
  col1,col2,col3,col4 = st.columns(4)
65
  with col1:
66
+ st.button('Artificial Neural Network')
 
67
  with col2:
68
+ st.button("Convolutional Neural Network")
 
69
  with col3:
70
+ st.button("Deep Convolutional Genertive Adversarial Network")
 
71
  with col4:
72
+ st.button("Cycle Consistent Generative Adversarial Network")
 
73
 
74
  col1,col2,col3,col4 = st.columns(4)
75
  with col1:
76
+ st.button("Pix2Pix")
 
77
  with col2:
78
+ st.button("Object Detection using YOLO")
 
79
  with col3:
80
+ st.button("Unet model for semantic segmentation")
 
81
  with col4:
82
+ st.button("Segmentation using YOLO")
 
83
 
84
  col1,col2,col3,col4 = st.columns(4)
85
  with col1:
86
+ st.button("Linear Regression")
 
87
  with col2:
88
+ st.button("Logistic Regression")
 
89
  with col3:
90
+ st.button("Naive Bayes Classifier")
 
91
  with col4:
92
+ st.button("Decision Tree Classiifer")
 
93
 
94
  elif selected == 'Projects':
95
  st.write(selected)