Update app.py
Browse files
app.py
CHANGED
|
@@ -3,11 +3,12 @@ from streamlit_option_menu import option_menu
|
|
| 3 |
import json
|
| 4 |
from streamlit_lottie import st_lottie
|
| 5 |
from PIL import Image
|
|
|
|
| 6 |
page_bg_img = '''
|
| 7 |
<style>
|
| 8 |
body {
|
| 9 |
-
background-image: url("https://images.unsplash.com/photo-1542281286-9e0a16bb7366");
|
| 10 |
-
background-size: cover;
|
| 11 |
}
|
| 12 |
</style>
|
| 13 |
'''
|
|
@@ -45,10 +46,10 @@ if selected == 'About me':
|
|
| 45 |
st.write('I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
|
| 46 |
st.write('---')
|
| 47 |
if selected == 'Tools and Experience':
|
| 48 |
-
st.header('Tools and
|
| 49 |
col1,col2 = st.columns(2)
|
| 50 |
with col1:
|
| 51 |
-
st.write('Below are the tools I use to train AI and the Machine Learning and Deep Learning models I have expertise in')
|
| 52 |
with col2:
|
| 53 |
st_lottie(lottiemaker('Tools.json'),speed=1,width=300,height=300)
|
| 54 |
|
|
@@ -105,6 +106,16 @@ if selected == 'Tools and Experience':
|
|
| 105 |
with col4:
|
| 106 |
st.button("Segmentation using YOLO")
|
| 107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
st.write('# Data Preprocessing and Visualisation')
|
| 109 |
col1,col2,col3,col4 = st.columns(4)
|
| 110 |
with col1:
|
|
@@ -123,7 +134,18 @@ if selected == 'Tools and Experience':
|
|
| 123 |
with col1:
|
| 124 |
st.button('\n \t Streamlit \t \n')
|
| 125 |
|
|
|
|
|
|
|
| 126 |
elif selected == 'Projects':
|
| 127 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
else:
|
| 129 |
st.write(selected)
|
|
|
|
| 3 |
import json
|
| 4 |
from streamlit_lottie import st_lottie
|
| 5 |
from PIL import Image
|
| 6 |
+
|
| 7 |
page_bg_img = '''
|
| 8 |
<style>
|
| 9 |
body {
|
| 10 |
+
background-image: url("https://images.unsplash.com/photo-1542281286-9e0a16bb7366");
|
| 11 |
+
background-size: cover;
|
| 12 |
}
|
| 13 |
</style>
|
| 14 |
'''
|
|
|
|
| 46 |
st.write('I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
|
| 47 |
st.write('---')
|
| 48 |
if selected == 'Tools and Experience':
|
| 49 |
+
st.header('Tools and Expertise')
|
| 50 |
col1,col2 = st.columns(2)
|
| 51 |
with col1:
|
| 52 |
+
st.write('# Below are the tools I use to train AI and the Machine Learning and Deep Learning models I have expertise in')
|
| 53 |
with col2:
|
| 54 |
st_lottie(lottiemaker('Tools.json'),speed=1,width=300,height=300)
|
| 55 |
|
|
|
|
| 106 |
with col4:
|
| 107 |
st.button("Segmentation using YOLO")
|
| 108 |
|
| 109 |
+
col1,col2,col3,col4 = st.columns(4)
|
| 110 |
+
with col1:
|
| 111 |
+
st.button("\n \t StyleGan \t \n")
|
| 112 |
+
with col2:
|
| 113 |
+
st.button("Facebook Prophet model for timeceries prediction")
|
| 114 |
+
with col3:
|
| 115 |
+
st.button("Bidirectional Encoder Representations from Transformers/n(BERT)")
|
| 116 |
+
with col4:
|
| 117 |
+
st.button("Recurrent Neural Network(RNN) and Long Stort Term Memory(LSTM)")
|
| 118 |
+
|
| 119 |
st.write('# Data Preprocessing and Visualisation')
|
| 120 |
col1,col2,col3,col4 = st.columns(4)
|
| 121 |
with col1:
|
|
|
|
| 134 |
with col1:
|
| 135 |
st.button('\n \t Streamlit \t \n')
|
| 136 |
|
| 137 |
+
st.write("---")
|
| 138 |
+
|
| 139 |
elif selected == 'Projects':
|
| 140 |
+
st.header('Projects')
|
| 141 |
+
st.write('I have made more than 50 projects in fields including Cnn, Gan, Machine Learning, Yolo object detection and segmentation, Pix2pix, Cyclegan and more')
|
| 142 |
+
st.write('Below are some models(one from each category)')
|
| 143 |
+
options = ['Cyclegan', 'Pix2Pix', 'DCGAN','yOLO Segmentation','Unet','Machine Learning Text classifier']
|
| 144 |
+
|
| 145 |
+
# Use st.multiselect to create the multiselect dropdown
|
| 146 |
+
selected_options = st.multiselect('Select options:', options)
|
| 147 |
+
|
| 148 |
+
# Display the selected options
|
| 149 |
+
st.write('You selected:', selected_options)
|
| 150 |
else:
|
| 151 |
st.write(selected)
|