File size: 1,149 Bytes
11cef86 0c42970 d6aeab5 0c42970 11cef86 42729e1 11cef86 42729e1 4ccae0f 11cef86 42729e1 59f765e |
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 |
import streamlit as st
st.markdown(
"""
<style>
.stApp {
background-image: url("https://huggingface.co/spaces/sree4411/Zero_To_Hero_In_MachineLearning/resolve/main/bckgimg.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
""",
unsafe_allow_html=True
)
st.title(":red[Zero To Hero In ML]")
st.header(":blue[About the App:-] ")
st.write("Zero to Hero ML is an interactive web application designed to guide users through the journey of learning machine learning from scratch. This app provides a structured learning path and resources to help users master machine learning concepts and techniques step by step and provides a solid foundation for understanding and working with machine learning")
st.header(":blue[About the Author:-] ")
st.write("Hello! Iam Jayasree Mandali,DataScience and Machine Learning Enthusiastic. Through this web app, I aims to provide a comprehensive and engaging learning experience for aspiring machine learning practitioners.I developed this app to offer valuable insights and hands-on experience in ML.")
|