Update my_pages/txt_pages.py
Browse files- my_pages/txt_pages.py +15 -18
my_pages/txt_pages.py
CHANGED
|
@@ -7,12 +7,11 @@ def render():
|
|
| 7 |
add_navigation("landing", "information_loss")
|
| 8 |
|
| 9 |
paragraphs = [
|
| 10 |
-
("
|
| 11 |
-
|
| 12 |
-
"
|
| 13 |
-
|
| 14 |
-
"
|
| 15 |
-
"and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
|
| 16 |
]
|
| 17 |
|
| 18 |
add_fadein_text(paragraphs)
|
|
@@ -21,12 +20,13 @@ def render():
|
|
| 21 |
add_navigation("information_loss", "rashomon_effect")
|
| 22 |
|
| 23 |
paragraphs = [
|
| 24 |
-
("
|
| 25 |
-
("
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
"
|
| 29 |
-
|
|
|
|
| 30 |
]
|
| 31 |
|
| 32 |
add_fadein_text(paragraphs)
|
|
@@ -35,12 +35,9 @@ def render():
|
|
| 35 |
add_navigation("rashomon_effect", "developer_decisions")
|
| 36 |
|
| 37 |
paragraphs = [
|
| 38 |
-
("
|
| 39 |
-
("
|
| 40 |
-
"and
|
| 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)
|
|
|
|
| 7 |
add_navigation("landing", "information_loss")
|
| 8 |
|
| 9 |
paragraphs = [
|
| 10 |
+
("A problem central to AI is the 'prediction problem', i.e., "
|
| 11 |
+
"being able to anticipate outcomes based on the information we already have.", 4),
|
| 12 |
+
("Unfortunately, translating the nuances of real world into 'data' can result in information loss. "
|
| 13 |
+
"This makes the prediction problem <i>imperfect</i>.", 5),
|
| 14 |
+
("<br><br>Click 'Next' to create the data for a real-world problem and notice the information loss.", 1)
|
|
|
|
| 15 |
]
|
| 16 |
|
| 17 |
add_fadein_text(paragraphs)
|
|
|
|
| 20 |
add_navigation("information_loss", "rashomon_effect")
|
| 21 |
|
| 22 |
paragraphs = [
|
| 23 |
+
("Since there is missing information, this leaves room for multiple possible ways to fill the gap.", 3),
|
| 24 |
+
("The existence of multiple equally correct interpretations of data (i.e., AI models), "
|
| 25 |
+
"with no evidence to elevate one over another due to lack of information, "
|
| 26 |
+
"is known as the <i>Rashomon effect.</i>", 4),
|
| 27 |
+
("As these models represent different interpretations of data, they might disagree with each other, "
|
| 28 |
+
"thus creating conflicting predictions, known as <i>predictive multiplicity.</i>", 4)
|
| 29 |
+
("<br><br>Click 'Next' to observe the Rashomon effect and multiplicity on an actual dataset.", 1)
|
| 30 |
]
|
| 31 |
|
| 32 |
add_fadein_text(paragraphs)
|
|
|
|
| 35 |
add_navigation("rashomon_effect", "developer_decisions")
|
| 36 |
|
| 37 |
paragraphs = [
|
| 38 |
+
("With the existence of numerous interpretations, the choice to pick one falls on the developer.", 3),
|
| 39 |
+
("A developer makes countless decisions when desiging the model that directly impact the eventual interpretation being chosen", 4),
|
| 40 |
+
("<br><br>Click 'Next' and take a tiny glimpse into various choices a developer has to make.", 1)
|
|
|
|
|
|
|
|
|
|
| 41 |
]
|
| 42 |
|
| 43 |
add_fadein_text(paragraphs)
|