Datasets:
File size: 1,936 Bytes
ef05fed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | ---
license: mit
language:
- en
pretty_name: ABX-HT-007 Allergic Sensitization Pattern
tags:
- antibiotics
- toxicity
- allergy
- hypersensitivity
- immune
- eosinophils
- tryptase
- tabular
task_categories:
- tabular-classification
size_categories:
- n<1k
---
ABX-HT-007 Allergic Sensitization Pattern
Purpose
Detect early allergic sensitization when immune response markers stop tracking treatment duration before hypersensitivity events.
Core pattern
- host_stress_index high
- duration_exposure_index high
- immune_coherence_index drops
- eos_rise_vs_expected or tryptase_rise_vs_expected stays high
- later_hypersensitivity_flag appears
Files
- data/train.csv
- data/test.csv
- scorer.py
Schema
Each row is one timepoint in a within series treatment course.
Required columns
- row_id
- series_id
- treatment_day
- host_model
- drug
- duration_exposure_index
- total_dose_mg
- expected_total_dose_mg
- dose_deviation
- eos_percent
- expected_eos_percent
- eos_rise_vs_expected
- tryptase_ng_mL
- expected_tryptase_ng_mL
- tryptase_rise_vs_expected
- immune_coherence_index
- host_stress_index
- later_hypersensitivity_flag
- assay_method
- source_type
- allergic_sensitization_signal
- earliest_allergic_sensitization
Labels
- allergic_sensitization_signal
- 1 for rows at or after first confirmed sensitization onset
- earliest_allergic_sensitization
- 1 only for the first onset row in that series
Scorer logic in v1
- exclude series with high baseline eosinophils
- candidate onset point
- host_stress_index at least 0.80
- duration_exposure_index at least 0.80
- immune_coherence_index at most 0.40
- eos_rise_vs_expected at least 3.0 or tryptase_rise_vs_expected at least 5.0
- for two consecutive points
- ignore one point eosinophil spike then recovery artifacts
- confirmation
- later_hypersensitivity_flag equals 1 later in series
Evaluation
Run
- python scorer.py --path data/test.csv
|