Update my_pages/ica.py
Browse files- my_pages/ica.py +12 -6
my_pages/ica.py
CHANGED
|
@@ -100,12 +100,18 @@ def render():
|
|
| 100 |
|
| 101 |
# --- Dummy points ---
|
| 102 |
locations = [
|
| 103 |
-
(0.9, 0.1, "Random Seeds", "Random Seeds are highly arbitrary, without any convention or intentionality.",
|
| 104 |
-
|
| 105 |
-
(0.
|
| 106 |
-
|
| 107 |
-
(0.
|
| 108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
]
|
| 110 |
|
| 111 |
torch_radius = 0.177
|
|
|
|
| 100 |
|
| 101 |
# --- Dummy points ---
|
| 102 |
locations = [
|
| 103 |
+
(0.9, 0.1, "Random Seeds", "Random Seeds are highly arbitrary, without any convention or intentionality.",
|
| 104 |
+
"left", "bottom"),
|
| 105 |
+
(0.35, 0.06, "Neural networks for Tabular Data", "Using neural networks of some arbitrary size (hidden layers) for a setting where they are not needed is highly conventional, a bit arbitrary, and has very low intentionality.",
|
| 106 |
+
"left", "bottom"),
|
| 107 |
+
(0.4, 0.5, "Pre-trained LLM for a Complex Task", "Using a high performing LLM for a complex task is intentional, however, it also has conventionality to it, as a specialized model could have worked, depending on context. No arbitrariness.",
|
| 108 |
+
"center", "bottom"),
|
| 109 |
+
(0.5, 0.7, "Best Bias Mitigation for a Particular Setup", "Choosing the most appropriate bias mitigation technique, specialized for the particular context, is highly intentional",
|
| 110 |
+
"center", "bottom"),
|
| 111 |
+
(0.7, 0.5, "Randomly chosen Regularization Technique", "Adding regularization to improve robustness, but choosing the regularization technique randomly, creates a decision that is intentional and arbitrary, while avoiding conventionality.",
|
| 112 |
+
"center", "top"),
|
| 113 |
+
(0.15, 0.15, "ReLU Activation as Default", "Choosing ReLU activation without testing what other activations might also work, is a highly conventional decision.",
|
| 114 |
+
"center", "bottom"),
|
| 115 |
]
|
| 116 |
|
| 117 |
torch_radius = 0.177
|