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 = """
"""
# Apply custom CSS
st.markdown(custom_css, unsafe_allow_html=True)
st.markdown('
AUTO ML
', 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('Author:L Sai Sreeja
', unsafe_allow_html=True)