Newer
Older
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# from packages import *
import streamlit as st
## load the custom CSS in the style folder
@st.cache_data
def local_css(file_name):
import streamlit as st
with open(file_name) as f:
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~ background image ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@st.cache_data
def BackgroundImg(change):
import base64
import streamlit as st
image_path = './images/img-sky.jpg'
with open(image_path, "rb") as image_file:
base64_image= base64.b64encode(image_file.read()).decode('utf-8')
# CSS code to set the background image
# Get the base64-encoded image
# CSS code to set the background image
background_image_style = f"""
<style>
.stApp {{
background-image: url("data:image/jpeg;base64,{base64_image}");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}}
</style>
"""
# Inject the CSS style
st.markdown(background_image_style, unsafe_allow_html=True)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~ add header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def add_header():
import streamlit as st
st.markdown(
"""
<div style="width: 100%;height: 170px; background-color: rgb(0,0,0,0);border: 4px solid rgb(122,176,199); padding: 0px; margin-bottom: 10px;border-radius: 20%; ">
<h1 style="font-family: 'Arial',d;text-align: center; color: #39bf55;">PACE - MEEB / CEFE</h1>
<h2 style="font-family: 'Arial';text-align: center; color: #2cb048;">NIRS Utils</h2>
</div>
""",
unsafe_allow_html=True,
)
st.markdown("""
<style>
.block-container {
padding-top: 3rem;
padding-bottom: 0rem;
padding-left: 5rem;
padding-right: 5rem;
}
</style>
""", unsafe_allow_html=True)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~ add sidebar ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def add_sidebar(pages_folder):
import streamlit as st
from st_pages import Page, show_pages
# from st_pages import Page, Section, show_pages, add_page_title, hide_pages
if 'interface' not in st.session_state:
st.session_state['interface'] = 'simple'
else:
st.session_state["interface"] = st.session_state.get('interface')
# # TOC menu on the left
show_pages(
[Page("app.py", "Home"),
Page(str(pages_folder / "0-inputs.py"), "Inputs"),
Page(str(pages_folder / "1-samples_selection.py"), "Samples Selection"),
Page(str(pages_folder / "2-model_creation.py"), "Models Creation & Predictions"),
]
)
with st.sidebar:
interface = st.radio(label="Interface", options=['simple', 'advanced'], key='interface')
# st.page_link(str(pages_folder / '1-samples_selection.py'))
if st.session_state['interface'] == 'simple':
# st.page_link(str(pages_folder / '2-model_creation.py'))
pass
# if advanced interface, split Models Creation and Predictions
elif st.session_state['interface'] == 'advanced':
show_pages(
[Page("app.py", "Home"),
Page(str(pages_folder / "0-inputs.py"), "Inputs"),
Page(str(pages_folder / "1-samples_selection.py"), "Samples Selection"),
Page(str(pages_folder / "2-model_creation.py"), "Models Creation"),
Page(str(pages_folder / "3-prediction.py"), "Predictions"),
]
)
# st.page_link(str(pages_folder / '2-model_creation.py'))
# st.page_link(str(pages_folder / '3-prediction.py'))