File size: 1,680 Bytes
23a568e fee62bc 14db98a fee62bc 14db98a 23a568e 02acf96 c7c5643 23a568e |
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 |
import streamlit as st
import pandas as pd
import numpy as np
st.markdown(
"""
<style>
.stApp {
background-image: url("https://huggingface.co/spaces/ronakreddy18/Zerotoheroinmachinelearning/resolve/main/ai-technology-brain-background-digital-transformation-concept.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
""",
unsafe_allow_html=True
)
st.markdown("<h1 style='text-align: center; color: Balck;'>Zero to Hero ML</h1>", unsafe_allow_html=True)
st.markdown("<h2 style='color: Black;'>About the App</h2>", unsafe_allow_html=True)
st.markdown(
"<p style='font-size: 16px; color: Blue; font-style: italic;'>"
"This app shares the inspiring journey of an individual who began their data science exploration with no prior knowledge. "
"The app deeply explains about the data science ,generative ai,ai,ml,dl . "
"The app helps in trasnforming a zero level to good standard in the respect coding languages like mentioned above ."
"At last dont forget to give the review for the detailed explanation ."
"</p>",
unsafe_allow_html=True)
st.markdown("<h2 style='color: Black;'>About the Author</h2>", unsafe_allow_html=True)
st.markdown(
"<p style='font-size: 16px; color: Blue; font-style: bold;'>"
"Hello! I’m D.Vamshi Vardhan Reddy , a learner with a keen interest in data-driven decision-making. I specialize in machine learning, generative AI, and data storytelling. Through this platform, Im here to demystify tech concepts and empower others to embark on their data science journey."
"</p>",
unsafe_allow_html=True)
|