Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wismaeka
/
itsok
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
wismaeka
commited on
Aug 13, 2024
Commit
ce31a15
·
verified
·
1 Parent(s):
4fb6afb
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import streamlit as st
2
+
import eda
3
+
import prediction
4
+
5
+
page = st.sidebar.selectbox('Choose Page: ', ('EDA', 'Prediction'))
6
+
7
+
if page == 'EDA':
8
+
eda.run()
9
+
else:
10
+
prediction.run()