Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Fredyco
/
GC3
like
0
Model card
Files
Files and versions
xet
Community
main
GC3
/
app.py
Fredyco
Upload 11 files
6ec8007
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
202 Bytes
import
streamlit
as
st
import
eda
import
prediction
navigation = st.sidebar.selectbox(
"Pilih Halaman : "
, (
"EDA"
,
"Predict A Player"
))
if
navigation ==
"EDA"
:
eda.run()
else
:
prediction.run()