Sathwikchowdary commited on
Commit
5ef2263
1 Parent(s): e1371e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +52 -9
app.py CHANGED
@@ -1,12 +1,55 @@
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
- st.title("Zero to Hero ML")
5
- st.subheader("About the app")
6
- st.markdown("This app shares the inspiring journey of an individual who began their data science exploration with no prior knowledge. It details their path to mastering various aspects of the field, including Machine Learning, Deep Learning, and Generative AI. 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")
7
- st.write("Learning data science comes with numerous challenges, such as gaining proficiency in tools like Python, building a solid understanding of mathematical concepts like statistics, and bridging the gap between theoretical knowledge and practical applications.")
8
- st.write("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. Additionally, common struggles include managing time effectively, dealing with imposter syndrome, and navigating the overwhelming abundance of information available.")
9
- st.subheader("About the Author")
10
- st.write("Sai Kalyan Satwik is a dedicated learner and practitioner in the field of data science. Starting with no prior knowledge, he has successfully transitioned into a skilled professional with expertise in Python, Machine Learning, Deep Learning, and Generative AI.")
11
- st.write("Beyond his technical abilities, he is passionate about inspiring others by sharing his journey. He firmly believes that with the right mindset, structured learning, and perseverance, anyone can overcome challenges and succeed.")
12
- st.write("By curiosity and determination, he has conquered various obstacles, including technical knowledge gaps. Through relentless dedication, hands-on projects, and continuous learning and achieving remarkable proficiency in the field.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ )