Spaces:
Sleeping
Sleeping
File size: 216 Bytes
e107c83 | 1 2 3 4 5 6 7 8 9 10 | import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Choose Page : ', ('Description','Salary Estimator'))
if navigation == 'Description':
eda.run()
else:
prediction.run() |