Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import numpy as np
|
| 3 |
+
import pandas as pd
|
| 4 |
+
import matplotlib.pyplot as plt
|
| 5 |
+
import seaborn as sns
|
| 6 |
+
import sklearn
|
| 7 |
+
|
| 8 |
+
# main page
|
| 9 |
+
|
| 10 |
+
st.title("AUTO ML")
|
| 11 |
+
|
| 12 |
+
st.header("about the app..")
|
| 13 |
+
|
| 14 |
+
st.write("This app is to predict the accuracy for various ML algorithms with respect to your data.")
|
| 15 |
+
st,write("**Give it a try , You will see MAGIC!!! **")
|
| 16 |
+
|
| 17 |
+
st.markdown('<div style="text-align: right">**Author : L Sai Sreeja**</div>', unsafe_allow_html=True)
|