analytics-jiten's picture
Update app.py
bdcb10c
raw
history blame contribute delete
976 Bytes
import streamlit as st
from streamlit_option_menu import option_menu
import classifier
import home
import contact
st.write('Facial Emotions/Expressions Recognition Tool (using image upload)')
st.write('##### This page created by [Jeetendra Pagwani](https://huggingface.co/analytics-jiten)')
st.markdown('---')
selected = option_menu(None, ["Home", "Emotions Recognition","Contact"],
icons=['house', 'cloud-upload', 'envelope-at-fill'],
menu_icon="cast", default_index=0, orientation="horizontal",
styles={
"container": {"padding": "0!important", "background-color": "#fafafa"},
"icon": {"color": "orange", "font-size": "20px"},
"nav-link": {"font-size": "20px", "text-align": "left", "margin":"1px", "--hover-color": "#eee"},
"nav-link-selected": {"background-color": "green"},
}
)
selected
if selected == 'Emotions Recognition':
classifier.run()
elif selected == 'Home':
home.run()
else:
contact.run()