ClarusC64 commited on
Commit
d8a084a
·
verified ·
1 Parent(s): c385ecc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +166 -0
README.md CHANGED
@@ -1,3 +1,169 @@
1
  ---
 
 
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: mit
5
+ task_categories:
6
+ - text-classification
7
+ tags:
8
+ - clinical
9
+ - clinical-reasoning
10
+ - intervention-selection
11
+ - competing-interventions
12
+ - treatment-choice
13
+ - stabilization-pathway
14
+ - counterfactual-twins
15
+ - stability
16
+ - evidence-fidelity
17
+ size_categories:
18
+ - n<1K
19
+ pretty_name: Clinical Competing Interventions v0.2
20
  ---
21
+
22
+ # What this dataset does
23
+
24
+ This dataset tests whether a model can choose the best stabilising intervention from competing plausible actions.
25
+
26
+ The task is not diagnosis.
27
+
28
+ The task is intervention selection under clinical uncertainty.
29
+
30
+ Each row presents a patient state and three possible intervention options.
31
+
32
+ The model must predict which intervention is most likely to improve the stabilization trajectory.
33
+
34
+ # What changed in v0.2
35
+
36
+ v0.2 adds counterfactual and adversarial cases.
37
+
38
+ Some rows have similar patient states but different best interventions because response profile, renal risk, ventilation risk, or support needs differ.
39
+
40
+ Some interventions that look plausible are harmful or insufficient in the given context.
41
+
42
+ This makes the task harder than simple escalation or severity classification.
43
+
44
+ # Core stability idea
45
+
46
+ The best intervention is not always the most aggressive intervention.
47
+
48
+ A patient may need fluids if fluid responsiveness is good and ventilation risk is low.
49
+
50
+ A patient may need vasopressors if fluid response is poor and circulatory support is required.
51
+
52
+ A patient may need oxygen escalation if respiratory load is the primary instability.
53
+
54
+ A patient may need dialysis if renal failure is the limiting recovery pathway.
55
+
56
+ A patient may need observation if the system is stable and intervention would add unnecessary burden.
57
+
58
+ Correct classification requires comparing competing stabilization pathways, not selecting treatment by current severity alone.
59
+
60
+ # Prediction target
61
+
62
+ The label column has three classes.
63
+
64
+ Label 0 means intervention_a is best.
65
+
66
+ Label 1 means intervention_b is best.
67
+
68
+ Label 2 means intervention_c is best.
69
+
70
+ # Row structure
71
+
72
+ Each row contains:
73
+
74
+ - scenario_id
75
+ - current_severity
76
+ - map
77
+ - lactate
78
+ - urine_output
79
+ - oxygen_requirement
80
+ - vasopressor_requirement
81
+ - fluid_responsiveness
82
+ - renal_risk
83
+ - ventilation_risk
84
+ - intervention_a
85
+ - intervention_b
86
+ - intervention_c
87
+ - label
88
+
89
+ current_severity uses:
90
+
91
+ - low
92
+ - moderate
93
+ - high
94
+
95
+ oxygen_requirement uses:
96
+
97
+ - 0 = room air or minimal support
98
+ - 1 = low oxygen requirement
99
+ - 2 = high oxygen requirement
100
+ - 3 = near respiratory boundary
101
+
102
+ vasopressor_requirement uses:
103
+
104
+ - none
105
+ - low
106
+ - moderate
107
+ - high
108
+
109
+ fluid_responsiveness uses:
110
+
111
+ - good
112
+ - poor
113
+
114
+ renal_risk uses:
115
+
116
+ - low
117
+ - medium
118
+ - high
119
+
120
+ ventilation_risk uses:
121
+
122
+ - low
123
+ - medium
124
+ - high
125
+
126
+ intervention fields may include:
127
+
128
+ - fluids
129
+ - vasopressors
130
+ - oxygen_escalation
131
+ - dialysis
132
+ - observe
133
+
134
+ # Evaluation
135
+
136
+ Submissions must contain:
137
+
138
+ ```csv
139
+ scenario_id,prediction
140
+ test_001,0
141
+ test_002,1
142
+ test_003,2
143
+
144
+ Run:
145
+
146
+ python scorer.py predictions.csv
147
+
148
+ Optional truth path:
149
+
150
+ python scorer.py predictions.csv data/test.csv
151
+
152
+ The scorer reports:
153
+
154
+ Accuracy
155
+ Macro precision
156
+ Macro recall
157
+ Macro F1
158
+ Confusion matrix
159
+ Structural Note
160
+
161
+ This benchmark contains counterfactual and adversarial cases designed to prevent shortcut learning from current severity or a single intervention preference.
162
+
163
+ The dataset does not expose the hidden rationale behind each label.
164
+
165
+ The goal is to evaluate whether models can compare competing stabilization pathways under uncertainty.
166
+
167
+ License
168
+
169
+ MIT