ASL_Image / app.py
didev007's picture
Upload 5 files
08215ff
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()