Update app.py
Browse files
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
st.write('# Tools I use to train AI')
|
| 41 |
col1,col2,col3,col4 = st.columns(4)
|
| 42 |
with col1:
|
| 43 |
-
st.
|
| 44 |
-
st.write("Python")
|
| 45 |
with col2:
|
| 46 |
-
st.
|
| 47 |
-
st.write('Tensorflow')
|
| 48 |
with col3:
|
| 49 |
-
st.
|
| 50 |
-
st.write('Numpy')
|
| 51 |
-
|
| 52 |
with col4:
|
| 53 |
-
st.
|
| 54 |
-
st.write('Keras')
|
| 55 |
|
| 56 |
_,col1,col2,col3,_ = st.columns(5)
|
| 57 |
with col1:
|
| 58 |
-
st.
|
| 59 |
-
st.write('Matplotlib')
|
| 60 |
with col2:
|
| 61 |
-
st.
|
| 62 |
-
st.write('Kaggle')
|
| 63 |
with col3:
|
| 64 |
-
st.
|
| 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.
|
| 71 |
-
st.write("Artificial Neural Network")
|
| 72 |
with col2:
|
| 73 |
-
st.
|
| 74 |
-
st.write("Convolutional Neural Network")
|
| 75 |
with col3:
|
| 76 |
-
st.
|
| 77 |
-
st.write("Deep Convolutional Genertive Adversarial Network")
|
| 78 |
with col4:
|
| 79 |
-
st.
|
| 80 |
-
st.write("Cycle Consistent Generative Adversarial Network")
|
| 81 |
|
| 82 |
col1,col2,col3,col4 = st.columns(4)
|
| 83 |
with col1:
|
| 84 |
-
st.
|
| 85 |
-
st.write("Pix2Pix")
|
| 86 |
with col2:
|
| 87 |
-
st.
|
| 88 |
-
st.write("Object Detection using YOLO")
|
| 89 |
with col3:
|
| 90 |
-
st.
|
| 91 |
-
st.write("Unet model for semantic segmentation")
|
| 92 |
with col4:
|
| 93 |
-
st.
|
| 94 |
-
st.write("Instance Segmentation using YOLO")
|
| 95 |
|
| 96 |
col1,col2,col3,col4 = st.columns(4)
|
| 97 |
with col1:
|
| 98 |
-
st.
|
| 99 |
-
st.write("Linear Regression")
|
| 100 |
with col2:
|
| 101 |
-
st.
|
| 102 |
-
st.write("Logistic Regression")
|
| 103 |
with col3:
|
| 104 |
-
st.
|
| 105 |
-
st.write("Naive Bayes Classifier")
|
| 106 |
with col4:
|
| 107 |
-
st.
|
| 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)
|