Milestone2P1 / main.py
casheu's picture
commit
bc9b26f
raw
history blame
No virus
208 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pages : ', ('Model EDA', 'Predict House Price'))
if navigation == 'Model EDA':
eda.run()
else:
prediction.run()