File size: 441 Bytes
c884264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
import pandas as pd
# import joblib as jb
import eda
import prediction


#header
"""
# Graded Challenge 7
**Name    : Frederick Kurniawan Putra**

**Batch   : HCK016**

This is model deployment of Hate Speech Sentiment Prediction.
"""



PAGES = {
    "Eda": eda,
    "Prediction": prediction
}
st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()