Spaces:
Sleeping
Sleeping
File size: 2,901 Bytes
3bf299a a3bae90 7b5801d a3bae90 7b5801d 4adc0ff 0367783 ac80c0d 8e3efb0 0367783 4adc0ff 76a527f 0b3eb06 ac80c0d 0b3eb06 be05360 76a527f 0189348 76a527f 0189348 76a527f 0d54cba b2d769c 0d54cba be84c5e 0d54cba b2d769c 76a527f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
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)")
|