Update my_pages/pre_information_loss.py
Browse files
my_pages/pre_information_loss.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
from utils import go_to
|
| 3 |
|
| 4 |
def render():
|
| 5 |
st.markdown(
|
| 6 |
"""
|
| 7 |
-
<div style='text-align: left; font-size:
|
| 8 |
Welcome to the Multiplicity Interactive Demo.<br><br>
|
| 9 |
In this demo, you will explore how developer choices create a multiverse of possible models,
|
| 10 |
and how these choices connect to concerns of arbitrariness and homogenization in AI.<br><br>
|
|
@@ -15,9 +15,5 @@ def render():
|
|
| 15 |
""",
|
| 16 |
unsafe_allow_html=True
|
| 17 |
)
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
with col2:
|
| 21 |
-
# center_button = st.button('Button')
|
| 22 |
-
if st.button("Get Started"):
|
| 23 |
-
go_to("home")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from utils import go_to, add_bottom_navigation
|
| 3 |
|
| 4 |
def render():
|
| 5 |
st.markdown(
|
| 6 |
"""
|
| 7 |
+
<div style='text-align: left; font-size:24px; color:#A6C8FF;'>
|
| 8 |
Welcome to the Multiplicity Interactive Demo.<br><br>
|
| 9 |
In this demo, you will explore how developer choices create a multiverse of possible models,
|
| 10 |
and how these choices connect to concerns of arbitrariness and homogenization in AI.<br><br>
|
|
|
|
| 15 |
""",
|
| 16 |
unsafe_allow_html=True
|
| 17 |
)
|
| 18 |
+
|
| 19 |
+
add_bottom_navigation("landing", "information_loss")
|
|
|
|
|
|
|
|
|
|
|
|