Update my_pages/developer_decisions.py
Browse files
my_pages/developer_decisions.py
CHANGED
|
@@ -1,10 +1,17 @@
|
|
| 1 |
# pipeline_app.py
|
| 2 |
import streamlit as st
|
| 3 |
-
from utils import add_navigation
|
| 4 |
from utils import pipeline_data
|
| 5 |
|
| 6 |
def render():
|
| 7 |
add_navigation("txt_developer_decisions", "txt_ica")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
if "active_stage" not in st.session_state:
|
| 10 |
st.session_state.active_stage = None
|
|
@@ -13,18 +20,6 @@ def render():
|
|
| 13 |
if "active_subsub" not in st.session_state:
|
| 14 |
st.session_state.active_subsub = None
|
| 15 |
|
| 16 |
-
st.markdown(
|
| 17 |
-
"""
|
| 18 |
-
<div style='text-align: center; font-size:18px; color:gray;'>
|
| 19 |
-
Developers make a huge number of decisions when designing ML models. <br>
|
| 20 |
-
Dive into some examples below to get a feel of how model design works. <br>
|
| 21 |
-
</div>
|
| 22 |
-
""",
|
| 23 |
-
unsafe_allow_html=True
|
| 24 |
-
)
|
| 25 |
-
|
| 26 |
-
st.markdown("---")
|
| 27 |
-
|
| 28 |
# Level 1: Stages
|
| 29 |
cols = st.columns(len(pipeline_data))
|
| 30 |
for idx, stage in enumerate(pipeline_data.keys()):
|
|
|
|
| 1 |
# pipeline_app.py
|
| 2 |
import streamlit as st
|
| 3 |
+
from utils import add_navigation, add_instruction_text
|
| 4 |
from utils import pipeline_data
|
| 5 |
|
| 6 |
def render():
|
| 7 |
add_navigation("txt_developer_decisions", "txt_ica")
|
| 8 |
+
|
| 9 |
+
add_instruction_text(
|
| 10 |
+
"""
|
| 11 |
+
Developers make a huge number of decisions when designing ML models. <br>
|
| 12 |
+
Dive into some examples below to get a feel of how model design works.
|
| 13 |
+
"""
|
| 14 |
+
)
|
| 15 |
|
| 16 |
if "active_stage" not in st.session_state:
|
| 17 |
st.session_state.active_stage = None
|
|
|
|
| 20 |
if "active_subsub" not in st.session_state:
|
| 21 |
st.session_state.active_subsub = None
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
# Level 1: Stages
|
| 24 |
cols = st.columns(len(pipeline_data))
|
| 25 |
for idx, stage in enumerate(pipeline_data.keys()):
|