Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mnurbani
/
credit-cards-simulation
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8e1ae11
credit-cards-simulation
/
app.py
mnurbani
Upload 9 files
395dc13
over 1 year ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
streamlit
as
st
import
eda
import
prediction
page = st.sidebar.selectbox(
'Pilih Halaman : '
, (
'EDA'
,
'Prediction'
))
if
page ==
'EDA'
:
eda.run()
else
:
prediction.run()