Spam_detection / app.py
ardian407's picture
Upload 8 files
28d20a2
raw
history blame contribute delete
No virus
180 Bytes
import streamlit as st
import eda
import prediction
halaman = st.sidebar.selectbox('Halaman: ',('EDA', 'Prediction'))
if halaman == 'EDA':
eda.run()
else:
prediction.run()