Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FerdiErs
/
Churn_Prediction
like
0
Runtime error
App
Files
Files
Community
68d3508
Churn_Prediction
/
app.py
FerdiErs
commit first try
68d3508
over 1 year ago
raw
Copy download link
history
blame
Safe
215 Bytes
import
streamlit
as
st
import
eda
import
prediction
navigation = st.sidebar.selectbox(
'Choose Page : '
, (
'Description'
,
'Churn Estimator'
))
if
navigation ==
'Description'
:
eda.run()
else
:
prediction.run()