import streamlit as st import pandas as pd import numpy as np st.set_page_config(page_title="Zero to Hero: Master Data Science & ML") ## CSS Styling for Background Image with Gradient Overlay custom_css = """ """ st.write(custom_css, unsafe_allow_html=True) # App Header 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." "
", unsafe_allow_html=True ) st.markdown( "" "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." "
", unsafe_allow_html=True ) st.markdown( "" "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." "
", unsafe_allow_html=True ) # Author Section st.markdown("" "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." "
", unsafe_allow_html=True ) st.markdown( "" "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." "
", unsafe_allow_html=True ) st.markdown( "" "Fueled by curiosity and determination, he has conquered various obstacles, including technical knowledge gaps." "Through relentless dedication, hands-on projects, and continuous learning, he has achieved remarkable proficiency in the field." "
", unsafe_allow_html=True )