ClarusC64 commited on
Commit
47ed115
·
verified ·
1 Parent(s): 71fc1e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -3
README.md CHANGED
@@ -1,3 +1,101 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ pretty_name: ABX-CS-008 Pediatric Dosing Effectiveness Decay
6
+ tags:
7
+ - antibiotics
8
+ - clinical
9
+ - pediatrics
10
+ - dosing
11
+ - weight-based
12
+ - pk-pd
13
+ - tabular
14
+ task_categories:
15
+ - tabular-classification
16
+ size_categories:
17
+ - n<1k
18
+ ---
19
+
20
+ ABX-CS-008 Pediatric Dosing Effectiveness Decay
21
+
22
+ Purpose
23
+
24
+ Detect early pediatric dosing decoupling when weight-based dosing no longer predicts exposure and response.
25
+
26
+ Core pattern
27
+
28
+ - severity_index high
29
+ - dose_mg_per_kg_per_day is near expected
30
+ - pediatric_coherence_index drops
31
+ - exposure_shortfall_vs_expected stays high
32
+ - efficacy_shortfall_vs_expected stays high
33
+ - symptom_nonresponse_vs_expected stays high
34
+ - later_dose_escalation_or_abx_change_or_prolonged_admission_flag appears
35
+
36
+ Files
37
+
38
+ - data/train.csv
39
+ - data/test.csv
40
+ - scorer.py
41
+
42
+ Schema
43
+
44
+ Each row is one timepoint in a within series pediatric antibiotic course.
45
+
46
+ Required columns
47
+
48
+ - row_id
49
+ - series_id
50
+ - day
51
+ - host_model
52
+ - age_years
53
+ - weight_kg
54
+ - abx_drug
55
+ - dose_mg_per_kg_per_day
56
+ - expected_dose_mg_per_kg_per_day
57
+ - dose_deviation_mg_kg
58
+ - exposure_index
59
+ - expected_exposure_index
60
+ - exposure_shortfall_vs_expected
61
+ - efficacy_index
62
+ - expected_efficacy_index
63
+ - efficacy_shortfall_vs_expected
64
+ - symptom_score
65
+ - expected_symptom_score
66
+ - symptom_nonresponse_vs_expected
67
+ - severity_index
68
+ - pediatric_coherence_index
69
+ - later_dose_escalation_or_abx_change_or_prolonged_admission_flag
70
+ - assay_method
71
+ - source_type
72
+ - pediatric_dosing_effectiveness_decay_signal
73
+ - earliest_pediatric_dosing_effectiveness_decay
74
+
75
+ Labels
76
+
77
+ - pediatric_dosing_effectiveness_decay_signal
78
+ - 1 for rows at or after first confirmed decay onset
79
+
80
+ - earliest_pediatric_dosing_effectiveness_decay
81
+ - 1 only for the first onset row in that series
82
+
83
+ Scorer logic in v1
84
+
85
+ - require severity_index at least 0.80
86
+ - require actual dose at least 90 percent of expected dose
87
+ - candidate onset point
88
+ - pediatric_coherence_index at most 0.40
89
+ - exposure_shortfall_vs_expected at least 0.25
90
+ - efficacy_shortfall_vs_expected at least 0.20
91
+ - symptom_nonresponse_vs_expected at least 2.0
92
+ - for two consecutive points
93
+ - ignore one point exposure shortfall spike then recovery
94
+ - confirmation
95
+ - later_dose_escalation_or_abx_change_or_prolonged_admission_flag equals 1 later in series
96
+
97
+ Evaluation
98
+
99
+ Run
100
+
101
+ - python scorer.py --path data/test.csv