prakharg24 commited on
Commit
2ea88d9
·
verified ·
1 Parent(s): 56f79c4

Update my_pages/developer_decisions.py

Browse files
Files changed (1) hide show
  1. my_pages/developer_decisions.py +11 -1
my_pages/developer_decisions.py CHANGED
@@ -11,7 +11,17 @@ def render():
11
  if "active_subsub" not in st.session_state:
12
  st.session_state.active_subsub = None
13
 
14
- st.markdown("<h2 style='text-align: center;'>Developer Decisions Pipeline</h2>", unsafe_allow_html=True)
 
 
 
 
 
 
 
 
 
 
15
 
16
  # Level 1: Stages
17
  cols = st.columns(len(pipeline_data))
 
11
  if "active_subsub" not in st.session_state:
12
  st.session_state.active_subsub = None
13
 
14
+ st.markdown(
15
+ """
16
+ <div style='text-align: center; font-size:18px; color:gray;'>
17
+ Developers make a huge number of decisions when designing ML models. <br>
18
+ Dive into some examples below to get a feel of how model design works. <br>
19
+ </div>
20
+ """,
21
+ unsafe_allow_html=True
22
+ )
23
+
24
+ st.markdown("---")
25
 
26
  # Level 1: Stages
27
  cols = st.columns(len(pipeline_data))