zero_to_hero_ML / HOME.py
Clone77's picture
Rename app.py to HOME.py
b1f503e verified
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,
)