Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.markdown( | |
""" | |
<h1 style="color: #007BFF; text-align: center;"> | |
โจ Dive into ML: Zero to Hero ๐ | |
</h1> | |
""",unsafe_allow_html = True | |
) | |
# Display the image centered using HTML | |
st.markdown( | |
""" | |
<div style="display: flex; justify-content: center;"> | |
<img src="https://huggingface.co/spaces/hari3485/DiveIntoML/resolve/main/ML.png",width="512" /> | |
</div> | |
""", unsafe_allow_html=True | |
) | |
st.markdown( | |
""" | |
<h3 style="text-align: left; color: red;"> | |
The Road to Machine Learning Mastery | |
</h3> | |
""", unsafe_allow_html=True | |
) | |
# Title and introductory message | |
st.markdown(""" | |
A platform designed to take you through the complete journey of machine learning ๐งโ๐ป. Whether you're a beginner ๐ or aiming for expert-level skills ๐, this page provides insights, resources, and real-world examples ๐ to help you master machine learning step by step. Explore various ML concepts, models, and tools ๐ง as we break down complex topics into easy-to-understand lessons ๐. Join the journey and transform your knowledge from zero to hero in machine learning! ๐ | |
""", unsafe_allow_html=True) | |
# Step-by-step learning process | |
st.markdown(""" | |
## Step-by-step learning process: | |
- ๐ฐ **Start with Basics**: Understand fundamental concepts and terminology. | |
- ๐ง **Learn Key Algorithms**: Dive into core ML models (e.g., regression, classification). | |
- ๐ **Hands-on Projects**: Work on real-world problems and datasets. | |
- โ๏ธ **Explore Tools & Libraries**: Get familiar with ML frameworks (e.g., TensorFlow, Scikit-learn). | |
- ๐ **Advanced Topics**: Master deep learning, reinforcement learning, and more. | |
- ๐ **Become an Expert**: Refine your skills with advanced techniques and applications! | |
""", unsafe_allow_html=True) | |
st.markdown(""" | |
## Education & Experience ๐๐ผ: | |
I have completed a <b>MSc in Statistics</b> ๐ from <b>Pondicherry University (2022โ2024)</b>, where I specialized in using statistical methods and data science tools to solve real-world challenges. I have experience with <b>SPSS</b> ๐งฎ for statistical analysis, am proficient in <b>R Programming</b> ๐ for data analysis and visualization, and skilled in various <b>Sampling Techniques</b> ๐ฌ for data analysis. Additionally, I possess a strong understanding of <b>Regression Analysis</b> ๐ for predictive modeling. | |
""", unsafe_allow_html=True) | |
st.markdown(""" | |
## Skills ๐ป๐: | |
- <b>Programming</b>: Python ๐, R ๐, SQL ๐๏ธ | |
- <b>Data Analysis & Visualization</b>: Numpy ๐งฎ, Pandas ๐, Power BI ๐, Excel ๐ | |
- <b>Statistical Analysis</b>: SPSS ๐งฎ | |
""", unsafe_allow_html=True) | |
# Footer message | |
st.markdown("---") | |
st.markdown("**Connect with me** ๐: [LinkedIn](https://www.linkedin.com/in/hari-chandan-76b673267)") | |