p2-m2-rmt018 / app.py
mukhlishr's picture
last milestone project bootcamp
54d8c28
raw
history blame contribute delete
No virus
197 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('page : ', ('EDA', 'Sentiment Prediction'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()