ahmadluay's picture
first commit
3329a29
raw
history blame contribute delete
No virus
247 Bytes
import streamlit as st
import eda # python file
import prediction # python file
navigation = st.sidebar.selectbox('Page Navigation: ',('EDA','Amazon Customer Review Prediction'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()