Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
fadyabila
/
Restaurant-Review-Prediction
like
0
Runtime error
App
Files
Files
Community
6fc1fb5
Restaurant-Review-Prediction
/
app.py
fadyabila
Submission
2ad8ff6
over 1 year ago
raw
Copy download link
history
blame
Safe
211 Bytes
import
streamlit
as
st
import
eda
import
prediction
navigation = st.sidebar.selectbox(
'Choose Page : '
, (
'EDA'
,
'Restaurant Review Prediction'
))
if
navigation ==
'EDA'
:
eda.run()
else
:
prediction.run()