Update my_pages/conclusion.py
Browse files- my_pages/conclusion.py +9 -19
my_pages/conclusion.py
CHANGED
|
@@ -1,23 +1,13 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
from utils import
|
| 3 |
|
| 4 |
def render():
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
"""
|
| 7 |
-
|
| 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>
|
| 11 |
-
The takeaway for the demo will be presented when you click 'Get Started'.
|
| 12 |
-
You may then navigate the demo by interacting with various concepts in the takeaway paragraph and returning as you wish,
|
| 13 |
-
or follow the guided tutorial which will go through all pieces in order.<br><br>
|
| 14 |
-
</div>
|
| 15 |
-
""",
|
| 16 |
-
unsafe_allow_html=True
|
| 17 |
-
)
|
| 18 |
-
|
| 19 |
-
# col1, col2, col3 = st.columns([2, 1, 2])
|
| 20 |
-
# with col2:
|
| 21 |
-
# # center_button = st.button('Button')
|
| 22 |
-
# if st.button("Get Started"):
|
| 23 |
-
# go_to("txt_information_loss")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from utils import add_navigation, add_instruction_text
|
| 3 |
|
| 4 |
def render():
|
| 5 |
+
add_navigation("txt_multiverse", None)
|
| 6 |
+
|
| 7 |
+
add_instruction_text(
|
| 8 |
+
"""
|
| 9 |
+
We hope you enjoyed the demo. <br><br>
|
| 10 |
+
Any questions, suggestions, feedback, or you just want to talk?.<br>
|
| 11 |
+
Feel free to reach out at: prakhar.ganesh@mila.quebec
|
| 12 |
"""
|
| 13 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|