File size: 412 Bytes
08215ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import pandas as pd 
import streamlit as st
import eda
import prediction

page = st.sidebar.selectbox("choose page: ", ("Home page","Data exploration","Data Prediction"))

if page == "Home page":
    st.title("ASL detection")
    st.write("Name: Dicky Gabriel")
    st.write("Batch: SBY-002")
    st.write("Objective : Predict ASL image")
elif page == "Data exploration":
    eda.run()
else:
    prediction.run()