File size: 2,447 Bytes
276090b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
task_categories:
  - image-segmentation
tags:
  - medical
  - ct
  - chest
  - lung
  - airway
  - segmentation
  - atm22
  - 3d
size_categories:
  - n<1K
---

# ATM22 — Airway Tree Modeling Challenge 2022 (re-mirror)

Re-hosted mirror of the **ATM22** challenge training set (Zhang et al.,
*Medical Image Analysis* 2023, arXiv:2303.05745), originally distributed
through the [ATM22 Grand Challenge](https://atm22.grand-challenge.org/).
This mirror rebuilds the data from the authors' own
[Zenodo re-publication](https://zenodo.org/records/6590745) under
CC BY 4.0, restructured into the same layout we use for KiTS23 / KiPA22 /
AbdomenCT1K / etc. so a single `Base3DDataset` subclass can load it.

## Composition

| Split | Cases | With mask |
|-------|------:|----------:|
| train | 299   | yes       |

Original challenge composition: 300 train + 50 val (image-only) + 150 test
(withheld). This mirror ships **train only** (300 cases minus 1 for
`ATM_164` whose label is misaligned with its corresponding image per
challenge errata = 299 usable cases). The val and test sets have no
public masks and so cannot be evaluated locally; refetch them from
Zenodo `imagesVal.rar` if you want inference-only inputs.

## File layout

```
dataset/ATM_001/
  imaging.nii.gz
  segmentation.nii.gz
...
dataset/ATM_500/
train.jsonl
README.md
```

`train.jsonl` lists one entry per case with `image`, `mask`, `label`,
`modality`, `dataset`, `official_split`, `patient_id` keys. Image/mask
paths are prefixed with `data/nii/ATM22/` so they slot directly into
the EasyMedSeg `Base3DDataset` `HF_JSONL_PREFIX` convention.

## Mask labels

Binary airway mask:

| Value | Class      |
|-------|------------|
| 0     | background |
| 1     | airway     |

The airway annotation includes trachea, main bronchi, lobar bronchi, and
segmental bronchi as one composite class (no branch-level subclasses in
the public release).

## License

CC BY 4.0, inherited from the upstream Zenodo mirror. The official
challenge organizers' research-only terms apply on top. Cite the
benchmark paper:

```bibtex
@article{zhang2023multi,
  title   = {Multi-site, multi-domain airway tree modeling (ATM'22):
             A public benchmark for pulmonary airway segmentation},
  author  = {Zhang, Minghui and Wu, Yangqian and Zhang, Hanxiao and others},
  journal = {Medical Image Analysis},
  year    = {2023},
  doi     = {10.1016/j.media.2023.102957}
}
```