Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,53 +1,96 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(
|
| 4 |
-
page_title="
|
| 5 |
page_icon="π§",
|
| 6 |
layout="wide"
|
| 7 |
)
|
| 8 |
|
| 9 |
st.markdown("""
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
st.markdown("""
|
| 17 |
-
<div
|
| 18 |
-
<h2
|
| 19 |
-
<p
|
| 20 |
-
Transform your data into powerful insights with ease! This platform
|
| 21 |
and build ML models without complexity. Whether you're experimenting with datasets or training models,
|
| 22 |
everything you need is right here. Start now and see the magic of ML in action! π―
|
| 23 |
</p>
|
| 24 |
-
<ul
|
| 25 |
-
<li><strong>
|
| 26 |
-
<li><strong>
|
| 27 |
-
<li><strong>
|
| 28 |
-
<li><strong>
|
| 29 |
-
<li><strong>
|
| 30 |
</ul>
|
| 31 |
</div>
|
| 32 |
""", unsafe_allow_html=True)
|
| 33 |
|
| 34 |
-
|
| 35 |
st.markdown("""
|
| 36 |
-
<div
|
| 37 |
-
<h2
|
| 38 |
-
<p
|
| 39 |
-
Hello! π Iβm
|
|
|
|
| 40 |
</p>
|
| 41 |
</div>
|
| 42 |
""", unsafe_allow_html=True)
|
| 43 |
|
| 44 |
-
|
| 45 |
st.markdown("""
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
st.set_page_config(
|
| 4 |
+
page_title="AutoML: ML for Everyone",
|
| 5 |
page_icon="π§",
|
| 6 |
layout="wide"
|
| 7 |
)
|
| 8 |
|
| 9 |
st.markdown("""
|
| 10 |
+
<style>
|
| 11 |
+
.main-container {
|
| 12 |
+
text-align: center;
|
| 13 |
+
padding: 20px;
|
| 14 |
+
font-family: Arial, sans-serif;
|
| 15 |
+
}
|
| 16 |
+
.title {
|
| 17 |
+
color: #880085;
|
| 18 |
+
font-size: 42px;
|
| 19 |
+
font-weight: bold;
|
| 20 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
| 21 |
+
}
|
| 22 |
+
.subtitle {
|
| 23 |
+
color: #000080;
|
| 24 |
+
font-size: 24px;
|
| 25 |
+
font-weight: bold;
|
| 26 |
+
}
|
| 27 |
+
.section {
|
| 28 |
+
background-color: #F8F9FA;
|
| 29 |
+
border-radius: 12px;
|
| 30 |
+
padding: 30px;
|
| 31 |
+
margin: 20px auto;
|
| 32 |
+
width: 80%;
|
| 33 |
+
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
|
| 34 |
+
}
|
| 35 |
+
.section h2 {
|
| 36 |
+
color: #c71585;
|
| 37 |
+
font-size: 28px;
|
| 38 |
+
font-weight: bold;
|
| 39 |
+
}
|
| 40 |
+
.section p, .section ul {
|
| 41 |
+
font-size: 18px;
|
| 42 |
+
line-height: 1.6;
|
| 43 |
+
color: #4F4F4F;
|
| 44 |
+
}
|
| 45 |
+
.section ul {
|
| 46 |
+
text-align: left;
|
| 47 |
+
display: inline-block;
|
| 48 |
+
margin: auto;
|
| 49 |
+
}
|
| 50 |
+
</style>
|
| 51 |
+
""", unsafe_allow_html=True)
|
| 52 |
|
| 53 |
+
st.markdown("""
|
| 54 |
+
<div class="main-container">
|
| 55 |
+
<h1 class="title">AutoML: Machine Learning for Everyone! π</h1>
|
| 56 |
+
<h2 class="subtitle">Upload, Analyze, and Build ML Models Effortlessly!</h2>
|
| 57 |
+
</div>
|
| 58 |
+
""", unsafe_allow_html=True)
|
| 59 |
|
| 60 |
st.markdown("""
|
| 61 |
+
<div class="section">
|
| 62 |
+
<h2>π What You'll Explore</h2>
|
| 63 |
+
<p>
|
| 64 |
+
Transform your data into powerful insights with ease! This platform helps you explore, analyze,
|
| 65 |
and build ML models without complexity. Whether you're experimenting with datasets or training models,
|
| 66 |
everything you need is right here. Start now and see the magic of ML in action! π―
|
| 67 |
</p>
|
| 68 |
+
<ul>
|
| 69 |
+
<li><strong>Upload Data:</strong> Start with your dataset in any format.</li>
|
| 70 |
+
<li><strong>Explore & Preprocess:</strong> Clean, transform, and understand your data.</li>
|
| 71 |
+
<li><strong>Build Models:</strong> Train and optimize based on your data.</li>
|
| 72 |
+
<li><strong>Assess Performance:</strong> Evaluate results and gain insights.</li>
|
| 73 |
+
<li><strong>Apply & Integrate:</strong> Use models for real-world applications.</li>
|
| 74 |
</ul>
|
| 75 |
</div>
|
| 76 |
""", unsafe_allow_html=True)
|
| 77 |
|
|
|
|
| 78 |
st.markdown("""
|
| 79 |
+
<div class="section">
|
| 80 |
+
<h2>About the Creator π</h2>
|
| 81 |
+
<p>
|
| 82 |
+
Hello! π Iβm <strong>Harika Padyala</strong>, a passionate Data Science student dedicated to simplifying complex concepts
|
| 83 |
+
and empowering others to excel in the field of machine learning.
|
| 84 |
</p>
|
| 85 |
</div>
|
| 86 |
""", unsafe_allow_html=True)
|
| 87 |
|
|
|
|
| 88 |
st.markdown("""
|
| 89 |
+
<div class="section">
|
| 90 |
+
<h2>Ready to Automate Your ML Workflow?...</h2>
|
| 91 |
+
<p>
|
| 92 |
+
Start your Machine Learning journey with ease! From data exploration to model deployment,
|
| 93 |
+
everything you need is just a few clicks away. Get started now and transform your data into insights! π
|
| 94 |
+
</p>
|
| 95 |
+
</div>
|
| 96 |
+
""", unsafe_allow_html=True)
|