File size: 1,281 Bytes
4347c65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: mit
language:
- en
pretty_name: ABX-PD-005 Time-Kill Curve Shape Distortion
tags:
- antibiotics
- pharmacodynamics
- resistance
- time-kill
- tabular
task_categories:
- tabular-classification
size_categories:
- n<1k
---

# ABX-PD-005: Time-Kill Curve Shape Distortion

This dataset tests whether you can detect loss of log linear kill coherence.

The curve stops behaving like a clean log linear decline.

It becomes plateaued or multiphasic.

## Time grid

v1 uses

- 0, 2, 4, 6, 24 hours

## Files

- data/train.csv
- data/test.csv
- scorer.py

## Schema

Each row is one timepoint in a time kill series.

Required columns

- row_id
- series_id
- timepoint_h
- organism
- strain_id
- antibiotic_name
- antibiotic_class
- drug_conc_mg_L
- cfu_log10
- media
- assay_method
- source_type
- shape_distortion_signal
- earliest_distortion

## Labels

- shape_distortion_signal
  - 1 for rows at or after distortion

- earliest_distortion
  - 1 only for the first detected row in that series

## Evaluation

Run

- python scorer.py --path data/test.csv

The scorer detects distortion using

- plateau segments
- multiphasic sign changes in slopes
- poor linear fit

The scorer avoids a common mistake.

It does not call distortion when drug concentration changes too much.