CoolFace
Apppublic

Rahma94/castingdefect

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to root
1import streamlit as st2import EDA3import pred4 5page = st.sidebar.selectbox('Pilih halaman : ', ('EDA', 'Prediction'))6 7if page == 'EDA':8    EDA.run()9else:10    pred.run()