Beasto commited on
Commit
6979e4c
·
1 Parent(s): 6bc10fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +34 -14
app.py CHANGED
@@ -41,26 +41,38 @@ if selected == 'Tools and Experience':
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=100,height=100)
44
- st.write('# Tools I use to train AI')
 
 
 
 
 
 
 
 
 
 
 
45
  col1,col2,col3,col4 = st.columns(4)
46
  with col1:
47
- st.button('\n \t Python \t \n')
48
  with col2:
49
- st.button('\n \t Tensorflow \t \n')
50
  with col3:
51
- st.button('\n \t Numpy \t \n')
52
  with col4:
53
- st.button('\n \t Matplotlib \t \n')
54
-
55
  _,col1,col2,col3,_ = st.columns(5)
 
56
  with col1:
57
- st.button("\n \t Keras \t \n")
58
  with col2:
59
- st.button('\n \t Pandas \t \n')
60
  with col3:
61
- st.button('\n \t Kaggle \t \n')
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')
@@ -81,15 +93,23 @@ if selected == 'Tools and Experience':
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)
 
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=100,height=100)
44
+
45
+ st.write('# Machine Learning Frameworks')
46
+ col1,col2,col3 = st.columns(3)
47
+
48
+ with col1:
49
+ st.button('\n \t Tensorflow \t \n')
50
+ with col2:
51
+ st.button('\n \t Keras \t \n')
52
+ with col3:
53
+ st.button('\n \t Scikit-Learn \t \n')
54
+
55
+ st.write('# Machine Learning Algorithim')
56
  col1,col2,col3,col4 = st.columns(4)
57
  with col1:
58
+ st.button("\n \t Linear Regression \t \n")
59
  with col2:
60
+ st.button('\n \t Logistic Regression \t \n')
61
  with col3:
62
+ st.button('\n \t Naive Bayes \t \n')
63
  with col4:
64
+ st.button('\n \t Decision Tree \t \n')
65
+
66
  _,col1,col2,col3,_ = st.columns(5)
67
+
68
  with col1:
69
+ st.button('\n \t Random Forest \t \n')
70
  with col2:
71
+ st.button('\n \t K Nearest Neighbour \t \n')
72
  with col3:
73
+ st.button('\n \t Support Vector Machine \t \n')
74
 
75
+ st.write('# Deep Learning Architectures')
76
  col1,col2,col3,col4 = st.columns(4)
77
  with col1:
78
  st.button('Artificial Neural Network')
 
93
  with col4:
94
  st.button("Segmentation using YOLO")
95
 
96
+ st.write('# Data Preprocessing and Visualisation')
97
  col1,col2,col3,col4 = st.columns(4)
98
  with col1:
99
+ st.button('\n \t Numpy \t \n')
100
  with col2:
101
+ st.button('\n \t Pandas \t \n')
102
  with col3:
103
+ st.button('\n \t Pillow \t \n')
104
  with col4:
105
+ st.button('\n \t Matplotlib \t \n')
106
+
107
+ st.write('# Model Deployment')
108
+
109
+ _,col1,_ = st.columns(3)
110
+
111
+ with col1:
112
+ st.button('\n \t Streamlit \t \n')
113
 
114
  elif selected == 'Projects':
115
  st.write(selected)