Spaces:
Running
Running
File size: 984 Bytes
8bc778c f9552ad 939dc22 f9552ad 8a8f806 f9552ad 939dc22 051dd4a 8bc778c 7450e23 8bc778c be7dd98 |
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 |
import streamlit as st
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import sklearn
# main page
custom_css = """
<style>
html, body, [data-testid="stAppViewContainer"] {
background:url('https://images.pexels.com/photos/19670/pexels-photo.jpg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') 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('<div style="text-align: center"><h1>AUTO ML</h1></div>', unsafe_allow_html=True)
st.header("about the app..")
st.write("This app is to predict the accuracy for various ML algorithms with respect to your data.")
st.write("***Give it a try , You will see MAGIC!!!***")
st.markdown('<div style="text-align: right"><b>Author:L Sai Sreeja</b></div>', unsafe_allow_html=True) |