Spaces:
Sleeping
Sleeping
File size: 2,170 Bytes
6458af0 effc1f8 fb19a21 3892172 c3ce935 3892172 3d72f7f 08f9946 3d72f7f 6458af0 7fcc1d7 9c7efcd 7fcc1d7 5aa7573 2aa0595 7fcc1d7 6458af0 | 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 | import streamlit as st
custom_css = """
<style>
html, body, [data-testid="stAppViewContainer"] {
background: linear-gradient(
rgba(255, 255, 255, 0.8), /* Semi-transparent white overlay */
rgba(200, 200, 255, 0.8)
),
url('https://i.imgur.com/vIszbgs.jpeg') no-repeat center center fixed;
background-size: cover; /* Cover the entire screen */
font-family: Arial, sans-serif;
color: #333333;
}
</style>"""
# Apply custom CSS
st.markdown(custom_css, unsafe_allow_html=True)
st.markdown(
"<h1 style='text-align: center;'>ZERO TO HERO IN MACHINE LEARNING..!</h1>",
unsafe_allow_html=True
)
st.markdown(
"""
<div style="display: flex; justify-content: center; align-items: center; height: auto;">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRYTN25GEP0YxpZ_b1Sy0qc3r4xfKNIMmeh0Q&s" alt="Centered Image" width="300">
</div>
""",
unsafe_allow_html=True
)
st.markdown(
"<h2 style='color:navy'>About the App</h2>",
unsafe_allow_html=True
)
st.markdown(
"<p style='color:olive, font-family:Arial Black'>This app provides a detailed tutorial about <b> Machine Learning</b>.Our app, <b>Zero to Hero in ML</b>, is a comprehensive learning companion designed to guide users from foundational concepts to advanced applications of machine learning. Leveraging interactive tutorials, real-world project examples, and intuitive visualizations, the app simplifies complex ML concepts for beginners while offering deep dives for advanced learners. Powered by cutting-edge machine learning itself, the app personalizes the learning experience, adapting to individual progress and providing tailored recommendations to help users master the skills needed to thrive in the rapidly evolving field of AI and data science</p>"
,unsafe_allow_html=True
)
st.markdown(
"""<h2 style='color:navy'>About the Author</h2>
<p><b>Sreeja Lachannagari,a passionate data science student dedicated to simplifying complex concepts and empowering others to excel in the field of machine learning</b></p>""",
unsafe_allow_html=True
)
|