import streamlit as st # Page Configuration st.set_page_config( page_title="Zero to Hero in Machine Learning", page_icon="🤖", layout="wide", ) # Title Section st.title("🎯 **Zero to Hero in Machine Learning**") st.markdown("#### *Empowering your journey into the fascinating world of Machine Learning!*") # About the App Section st.header("💡 **About the App**") st.write(""" Welcome to **Zero to Hero in Machine Learning**, your ultimate guide to mastering the essentials of machine learning! 🚀 Whether you're a **complete beginner** or looking to **sharpen your skills**, this app has got you covered: - ✅ Basics to advanced ML concepts - 📊 Interactive examples and visualizations - 📂 Hands-on datasets to practice - 🧠 Engaging exercises to test your understanding This app makes learning **fun and accessible** for everyone. Let's dive in! 🌟 """) # About the Author Section st.header("👨‍💻 **About the Author**") st.write(""" Hi! I'm **Kaustubh Yewale** 👋, an **AI Developer** passionate about making complex topics simple and easy to understand. I specialize in: - 🤖 **Building intelligent systems**: Spam detection, virtual assistants, and stock price predictors - 💻 **Programming**: Python, SQL, and data analytics tools - 🔍 **Data Science**: From EDA to model deployment With a strong foundation in Python and machine learning, I aim to make data science learning **fun and accessible for everyone**! 🌟 """) # Skills Section st.header("✨ **Skills at a Glance**") skills = { "Programming Languages": "Python 🐍, SQL 📊", "Machine Learning Frameworks": "Scikit-learn 🤖, TensorFlow 🔥, Keras 🧠", "Data Analytics": "Pandas 📊, NumPy 📈, Power BI 📉", "Visualization Tools": "Matplotlib 🎨, Seaborn 📊", "Projects": "Spam Detection 🛡️, Virtual Assistants 🎙️, Stock Prediction 📈", } for skill, details in skills.items(): st.markdown(f"**{skill}:** {details}") # LinkedIn and GitHub Section st.header("🔗 **Connect with Me**") st.markdown( """ - [![LinkedIn](https://img.shields.io/badge/LinkedIn-Connect-blue?logo=linkedin)](https://www.linkedin.com/in/kaustubh-yewale-3902551b9) - [![GitHub](https://img.shields.io/badge/GitHub-Follow-lightgrey?logo=github)](https://github.com/Kaustubh102) """ ) # Footer Section st.markdown( """ --- 🌟 *Let's turn your Machine Learning aspirations into reality! Together, we'll go from Zero to Hero!* 🌟 """, unsafe_allow_html=True, )