prakharg24 commited on
Commit
a0945b7
·
verified ·
1 Parent(s): 6a190ba

Update my_pages/txt_pages.py

Browse files
Files changed (1) hide show
  1. my_pages/txt_pages.py +42 -0
my_pages/txt_pages.py CHANGED
@@ -29,4 +29,46 @@ def render():
29
  "and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
30
  ]
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  add_fadein_text(paragraphs)
 
29
  "and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
30
  ]
31
 
32
+ add_fadein_text(paragraphs)
33
+
34
+ elif st.session_state.page=="txt_developer_decisions":
35
+ add_navigation("rashomon_effect", "developer_decisions")
36
+
37
+ paragraphs = [
38
+ ("Welcome to the Multiplicity Interactive Demo 3.", 2),
39
+ ("In this demo, you will explore how developer choices create a multiverse of possible models, "
40
+ "and how these choices connect to concerns of arbitrariness and homogenization in AI.", 2),
41
+ ("The takeaway for the demo will be presented when you click 'Get Started'. "
42
+ "You may then navigate the demo by interacting with various concepts in the takeaway paragraph "
43
+ "and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
44
+ ]
45
+
46
+ add_fadein_text(paragraphs)
47
+
48
+ elif st.session_state.page=="txt_ica":
49
+ add_navigation("developer_decisions", "ica")
50
+
51
+ paragraphs = [
52
+ ("Welcome to the Multiplicity Interactive Demo 4.", 2),
53
+ ("In this demo, you will explore how developer choices create a multiverse of possible models, "
54
+ "and how these choices connect to concerns of arbitrariness and homogenization in AI.", 2),
55
+ ("The takeaway for the demo will be presented when you click 'Get Started'. "
56
+ "You may then navigate the demo by interacting with various concepts in the takeaway paragraph "
57
+ "and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
58
+ ]
59
+
60
+ add_fadein_text(paragraphs)
61
+
62
+ elif st.session_state.page=="txt_multiverse":
63
+ add_navigation("ica", "multiverse")
64
+
65
+ paragraphs = [
66
+ ("Welcome to the Multiplicity Interactive Demo 5.", 2),
67
+ ("In this demo, you will explore how developer choices create a multiverse of possible models, "
68
+ "and how these choices connect to concerns of arbitrariness and homogenization in AI.", 2),
69
+ ("The takeaway for the demo will be presented when you click 'Get Started'. "
70
+ "You may then navigate the demo by interacting with various concepts in the takeaway paragraph "
71
+ "and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
72
+ ]
73
+
74
  add_fadein_text(paragraphs)