Spaces:
Running
Running
Sathwikchowdary
commited on
Commit
•
5ef2263
1
Parent(s):
e1371e3
Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,55 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
import numpy as np
|
4 |
-
st.
|
5 |
-
st.
|
6 |
-
st.markdown(
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
import numpy as np
|
4 |
+
st.markdown("<h1 style='text-align: center; color: Balck;'>Zero to Hero ML</h1>", unsafe_allow_html=True)
|
5 |
+
st.markdown("<h2 style='color: Black;'>About the App</h2>", unsafe_allow_html=True)
|
6 |
+
st.markdown(
|
7 |
+
"<p style='font-size: 16px; color: Blue;'>"
|
8 |
+
"This app shares the inspiring journey of an individual who began their data science exploration with no prior knowledge. "
|
9 |
+
"It details their path to mastering various aspects of the field, including Machine Learning, Deep Learning, and Generative AI. "
|
10 |
+
"The app highlights their challenges, setbacks, and perseverance in transitioning from a beginner to an expert in data science, offering a motivational zero-to-hero story."
|
11 |
+
"</p>",
|
12 |
+
unsafe_allow_html=True)
|
13 |
+
st.markdown(
|
14 |
+
"<p style='font-size: 16px; color: Blue;'>"
|
15 |
+
"Learning data science comes with numerous challenges, such as gaining proficiency in tools like Python, building a solid understanding of mathematical concepts like statistics, "
|
16 |
+
"and bridging the gap between theoretical knowledge and practical applications."
|
17 |
+
"</p>",
|
18 |
+
unsafe_allow_html=True
|
19 |
+
)
|
20 |
+
st.markdown(
|
21 |
+
"<p style='font-size: 16px; color: Blue;'>"
|
22 |
+
"Starting out in data science comes with several initial hurdles, such as a lack of technical expertise and difficulty understanding how to apply concepts in real-world scenarios. "
|
23 |
+
"Additionally, common struggles include managing time effectively, dealing with imposter syndrome, and navigating the overwhelming abundance of information available."
|
24 |
+
"</p>",
|
25 |
+
unsafe_allow_html=True
|
26 |
+
)
|
27 |
+
|
28 |
+
# Subheader for author section
|
29 |
+
st.markdown(
|
30 |
+
"<h2 style='color: Black;'>About the Author</h2>",
|
31 |
+
unsafe_allow_html=True
|
32 |
+
)
|
33 |
+
st.markdown(
|
34 |
+
"<p style='font-size: 16px; color:Blue;'>"
|
35 |
+
"Sai Kalyan Satwik is a dedicated learner and practitioner in the field of data science. "
|
36 |
+
"Starting with no prior knowledge, he has successfully transitioned into a skilled professional with expertise in Python, Machine Learning, Deep Learning, and Generative AI."
|
37 |
+
"</p>",
|
38 |
+
unsafe_allow_html=True
|
39 |
+
)
|
40 |
+
|
41 |
+
st.markdown(
|
42 |
+
"<p style='font-size: 16px; color:Blue;'>"
|
43 |
+
"Beyond his technical abilities, he is passionate about inspiring others by sharing his journey. "
|
44 |
+
"He firmly believes that with the right mindset, structured learning, and perseverance, anyone can overcome challenges and succeed."
|
45 |
+
"</p>",
|
46 |
+
unsafe_allow_html=True
|
47 |
+
)
|
48 |
+
|
49 |
+
st.markdown(
|
50 |
+
"<p style='font-size: 16px; color:Blue;'>"
|
51 |
+
"Fueled by curiosity and determination, he has conquered various obstacles, including technical knowledge gaps. "
|
52 |
+
"Through relentless dedication, hands-on projects, and continuous learning, he has achieved remarkable proficiency in the field."
|
53 |
+
"</p>",
|
54 |
+
unsafe_allow_html=True
|
55 |
+
)
|