ClarusC64 commited on
Commit
79dd781
·
verified ·
1 Parent(s): 138a4ed

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +186 -3
README.md CHANGED
@@ -1,3 +1,186 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ task_categories:
6
+ - text-classification
7
+ tags:
8
+ - clinical-trials
9
+ - cascade-modeling
10
+ - shock
11
+ - boundary-discovery
12
+ - five-node
13
+ size_categories:
14
+ - 1K<n<10K
15
+ pretty_name: Clinical Five Node Shock Cascade Boundary v0.4
16
+ ---
17
+
18
+ # What this repo does
19
+
20
+ This dataset models shock cascade instability boundaries using a five-node physiological interaction system.
21
+
22
+ Clarus v0.4 datasets focus on detecting whether systems lie on the edge of cascade instability.
23
+
24
+ The objective is to determine when the shock system is so close to collapse that even small perturbations trigger systemic failure.
25
+
26
+ # Core cascade nodes
27
+
28
+ hemodynamic_stress
29
+ vascular_buffer
30
+ intervention_delay
31
+ organ_coupling
32
+ metabolic_stress
33
+
34
+ These nodes represent interacting components of shock physiology.
35
+
36
+ hemodynamic_stress captures circulatory strain and perfusion instability.
37
+
38
+ vascular_buffer represents remaining vascular reserve and compensatory capacity.
39
+
40
+ intervention_delay reflects delayed fluids, vasopressors, source control, or corrective treatment.
41
+
42
+ organ_coupling represents propagation of dysfunction across organ systems.
43
+
44
+ metabolic_stress represents systemic metabolic instability under shock conditions.
45
+
46
+ # Trajectory layer
47
+
48
+ drift_gradient
49
+
50
+ Range
51
+ -1 to +1
52
+
53
+ Negative values indicate stabilization.
54
+
55
+ Positive values indicate drift toward cascade.
56
+
57
+ # Dynamic forecasting layer
58
+
59
+ drift_velocity
60
+ drift_acceleration
61
+ boundary_distance
62
+
63
+ These describe how quickly the system is approaching collapse.
64
+
65
+ # Boundary discovery layer
66
+
67
+ Two variables capture proximity to instability.
68
+
69
+ perturbation_radius
70
+ collapse_trigger
71
+
72
+ These convert the dataset into an adversarial cascade boundary discovery benchmark.
73
+
74
+ # Boundary variable definitions
75
+
76
+ ## perturbation_radius
77
+
78
+ Minimum perturbation needed to push the system into cascade.
79
+
80
+ Range 0 to 1.
81
+
82
+ Small values indicate extreme fragility.
83
+
84
+ ## collapse_trigger
85
+
86
+ Binary indicator showing whether the perturbation produced cascade.
87
+
88
+ 0 stable
89
+ 1 cascade
90
+
91
+ collapse_trigger is included as an observed perturbation response feature.
92
+
93
+ It is not the prediction target.
94
+
95
+ The prediction task is to identify the underlying boundary-risk state.
96
+
97
+ # Prediction target
98
+
99
+ label_shock_cascade
100
+
101
+ A positive label is triggered when either condition holds.
102
+
103
+ boundary_distance < 0.10
104
+
105
+ or
106
+
107
+ perturbation_radius < 0.08
108
+
109
+ These thresholds represent proximity to the instability manifold and minimal perturbation collapse risk.
110
+
111
+ # Row structure
112
+
113
+ scenario_id
114
+
115
+ hemodynamic_stress
116
+ vascular_buffer
117
+ intervention_delay
118
+ organ_coupling
119
+ metabolic_stress
120
+
121
+ drift_gradient
122
+ drift_velocity
123
+ drift_acceleration
124
+ boundary_distance
125
+
126
+ perturbation_radius
127
+ collapse_trigger
128
+
129
+ label_shock_cascade
130
+
131
+ # Files
132
+
133
+ data/train.csv
134
+ labeled training examples
135
+
136
+ data/tester.csv
137
+ unlabeled evaluation examples
138
+
139
+ scorer.py
140
+ binary boundary detection evaluation script
141
+
142
+ README.md
143
+ dataset documentation
144
+
145
+ # Evaluation
146
+
147
+ The scorer reports
148
+
149
+ accuracy
150
+ precision
151
+ recall_boundary_detection
152
+ false_safe_rate
153
+ f1
154
+ confusion_matrix
155
+
156
+ Primary metric
157
+
158
+ recall_boundary_detection
159
+
160
+ Secondary diagnostic metric
161
+
162
+ false_safe_rate
163
+
164
+ # Structural Note
165
+
166
+ Clarus dataset progression
167
+
168
+ v0.1 cascade detection
169
+ v0.2 trajectory detection
170
+ v0.3 dynamic forecasting
171
+ v0.4 boundary discovery
172
+
173
+ # Production Deployment
174
+
175
+ Research dataset for instability detection and cascade modeling.
176
+
177
+ Not intended for clinical decision use.
178
+
179
+ # Enterprise & Research Collaboration
180
+
181
+ For dataset expansion, custom coherence scorers, or deployment architecture:
182
+
183
+ team@clarusinvariant.com
184
+
185
+ Instability is detectable.
186
+ Governance determines whether it propagates.