File size: 1,232 Bytes
191195c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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()