Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
-
from
|
3 |
from sklearn.svm import SVC
|
4 |
from sklearn.pipeline import make_pipeline
|
5 |
from sklearn.preprocessing import StandardScaler
|
6 |
import joblib
|
7 |
-
|
8 |
|
9 |
if 'cleaned_data' not in st.session_state:
|
10 |
st.session_state['cleaned_data'] =''
|
|
|
1 |
import streamlit as st
|
2 |
+
from admin_utils import *
|
3 |
from sklearn.svm import SVC
|
4 |
from sklearn.pipeline import make_pipeline
|
5 |
from sklearn.preprocessing import StandardScaler
|
6 |
import joblib
|
7 |
+
|
8 |
|
9 |
if 'cleaned_data' not in st.session_state:
|
10 |
st.session_state['cleaned_data'] =''
|