Spaces:
Sleeping
Sleeping
import streamlit as st | |
import sys,os | |
sys.path.append(f'{os.getcwd()}/utils') | |
from utils.model_users import get_product_dev_page_layout | |
# st.write(st.session_state.user_group) | |
USER_GROUPS = ["Developer", "Manager", "Practitioner"] | |
st.set_page_config(layout="wide") | |
if 'user_group' not in st.session_state: | |
index_tmp = 0 | |
else: | |
index_tmp = USER_GROUPS.index(st.session_state['user_group']) | |
#Sidebar for USER GROUPS | |
st.sidebar.title("USER GROUPS") | |
backend = st.sidebar.selectbox( | |
"Select User-Group ", USER_GROUPS, index=index_tmp | |
) | |
st.session_state['user_group'] = backend | |
st.title("Explore Model Panel for OCT Image Analysis") | |
st.write( | |
""" | |
## | |
Examining model details for the develop models. This section highlights the overview of the developed model for specific user groups. | |
Developer, model owners and managers can use this section by hemselves. | |
""") | |
list_test = """<ul> | |
<li><strong>Dev</li> | |
<li><strong>Deploy</li> | |
<li><strong>General</li> | |
</ul>""" | |
st.markdown(list_test, unsafe_allow_html=True) | |
if backend == "Developer": | |
get_product_dev_page_layout() |