Spaces:
Sleeping
Sleeping
File size: 1,494 Bytes
e75d47f 389567e e75d47f | 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | '''
Phase 2 Graded Challenge 1
Nama : Achmad Dhani
Batch : HCK-009
Objective : Creating a main page of the webapps.
'''
import streamlit as st
import eda
import model
# navigating pages
page = st.sidebar.selectbox(label='Select Page:', options=['Home Page', 'Exploration Data Analysis', 'Emotion Classification Model'])
if page == 'Home Page':
st.header('Home Page')
st.write('')
st.write('Phase 1 Milestone 2')
st.write('Name : Achmad Dhani')
st.write('Batch : HCK-009')
st.markdown('Dataset: [Emotion Dataset](https://www.kaggle.com/datasets/abdallahwagih/emotion-dataset)')
st.write('Objective :')
st.write('')
st.caption('Please pick the options in the Select Page Box located on the left of the screen to start!')
st.write('')
st.write('')
#============================= Background Info ==========================
with st.expander("Background Information"):
st.caption('')
#============================= Work Flow ================================
with st.expander("Work Flow"):
st.caption(
'''
'''
)
#============================= Conclussion =================================
with st.expander("Conclusion"): # conclusion
st.caption(
'''
'''
)
#============================ Other Page ======================================
elif page == 'Exploration Data Analysis':
eda.run()
else:
model.run()
|