Update my_pages/rashomon_effect.py
Browse files- my_pages/rashomon_effect.py +3 -10
my_pages/rashomon_effect.py
CHANGED
|
@@ -6,6 +6,8 @@ from utils import go_to
|
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
|
|
|
|
|
|
| 9 |
st.markdown(
|
| 10 |
"""
|
| 11 |
<style>
|
|
@@ -129,13 +131,4 @@ def render():
|
|
| 129 |
st.markdown(
|
| 130 |
f"<div style='text-align:center; color:#c0392b; font-size:20px; font-weight:bold; margin:14px 0;'>{multiplicity_message}</div>",
|
| 131 |
unsafe_allow_html=True,
|
| 132 |
-
)
|
| 133 |
-
|
| 134 |
-
st.markdown("---")
|
| 135 |
-
col1, col2, col3, col4 = st.columns([2, 1, 1, 1])
|
| 136 |
-
with col3:
|
| 137 |
-
if st.button("Go Home"):
|
| 138 |
-
go_to("home")
|
| 139 |
-
with col4:
|
| 140 |
-
if st.button("Next"):
|
| 141 |
-
go_to("developer_decisions")
|
|
|
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
| 9 |
+
add_navigation("txt_rashomon_effect", "txt_developer_decisions")
|
| 10 |
+
|
| 11 |
st.markdown(
|
| 12 |
"""
|
| 13 |
<style>
|
|
|
|
| 131 |
st.markdown(
|
| 132 |
f"<div style='text-align:center; color:#c0392b; font-size:20px; font-weight:bold; margin:14px 0;'>{multiplicity_message}</div>",
|
| 133 |
unsafe_allow_html=True,
|
| 134 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|