Angelou0516 commited on
Commit
8bfedc2
·
verified ·
1 Parent(s): ab4e683

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +88 -37
README.md CHANGED
@@ -1,39 +1,90 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: inst_map
7
- dtype: image
8
- - name: type_map
9
- dtype: image
10
- - name: tissue
11
- dtype: int32
12
- - name: tissue_name
13
- dtype: string
14
- - name: fold
15
- dtype: int32
16
- - name: sample_id
17
- dtype: string
18
- splits:
19
- - name: fold1
20
- num_bytes: 306763992
21
- num_examples: 2656
22
- - name: fold2
23
- num_bytes: 288997343
24
- num_examples: 2523
25
- - name: fold3
26
- num_bytes: 316302533
27
- num_examples: 2722
28
- download_size: 911961186
29
- dataset_size: 912063868
30
- configs:
31
- - config_name: default
32
- data_files:
33
- - split: fold1
34
- path: data/fold1-*
35
- - split: fold2
36
- path: data/fold2-*
37
- - split: fold3
38
- path: data/fold3-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - medical
7
+ - histopathology
8
+ - h-and-e
9
+ - nuclei
10
+ - instance-segmentation
11
+ - pan-cancer
12
+ - tcga
13
+ - gtex
14
+ size_categories:
15
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # PanNuke
19
+
20
+ Pan-Cancer H&E Nuclei Instance Segmentation and Classification dataset
21
+ (Gamper et al., ECDP 2019; arXiv:2003.10778). Mirrored from the
22
+ [Warwick TIA Centre release](https://warwick.ac.uk/fac/cross_fac/tia/data/pannuke).
23
+
24
+ ## Composition
25
+
26
+ - **7,901** RGB patches of 256x256 at 40x magnification (~0.25 um/pixel)
27
+ - **19** tissue types pooled from TCGA / GTEx (Breast, Colon, Lung, Kidney,
28
+ Prostate, Stomach, Ovarian, Bladder, Esophagus, Pancreatic, Thyroid, Skin,
29
+ Cervix, Adrenal_gland, Bile-duct, Liver, HeadNeck, Testis, Uterus)
30
+ - **~189,744** annotated nuclei, multi-pathologist QC
31
+ - **3 folds** (PanNuke is designed for 3-fold cross-validation):
32
+ - `fold1`: 2,656 patches
33
+ - `fold2`: 2,523 patches
34
+ - `fold3`: 2,722 patches
35
+
36
+ ## Schema
37
+
38
+ | Field | Type | Description |
39
+ |---------------|-------------------------------|-------------------------------------------------------|
40
+ | `image` | PIL RGB 256x256 | H&E patch, uint8 |
41
+ | `inst_map` | PIL grayscale uint16 256x256 | Global per-pixel instance ID (0 = background) |
42
+ | `type_map` | PIL grayscale uint8 256x256 | Semantic class per pixel (see table below) |
43
+ | `tissue` | int | Tissue ID 0-18 (alphabetical) |
44
+ | `tissue_name` | str | Tissue type name |
45
+ | `fold` | int | Source fold (1, 2, or 3) |
46
+ | `sample_id` | str | Unique ID, `foldN_NNNN` |
47
+
48
+ ### Semantic class encoding (`type_map`)
49
+
50
+ | Value | Class |
51
+ |-------|--------------------------|
52
+ | 0 | Background |
53
+ | 1 | Neoplastic |
54
+ | 2 | Inflammatory |
55
+ | 3 | Connective / Soft tissue |
56
+ | 4 | Dead |
57
+ | 5 | Epithelial |
58
+
59
+ ### Instance map (`inst_map`)
60
+
61
+ Each connected nucleus is assigned a unique 16-bit integer ID per patch
62
+ (starting from 1). IDs are derived from the original 6-channel mask
63
+ arrays released by Warwick: for each foreground class channel, instance
64
+ IDs are offset by the running count of nuclei in previous channels so
65
+ the result is globally unique within the patch.
66
+
67
+ ## License
68
+
69
+ CC BY-NC-SA 4.0 (research / non-commercial use). Same license as the
70
+ original Warwick release.
71
+
72
+ ## Citation
73
+
74
+ ```bibtex
75
+ @article{gamper2020pannuke,
76
+ title={PanNuke Dataset Extension, Insights and Baselines},
77
+ author={Gamper, Jevgenij and Koohbanani, Navid Alemi and Graham, Simon and Jahanifar, Mostafa and Benet, Ksenija and Khurram, Syed Ali and Azam, Ayesha and Hewitt, Katherine and Rajpoot, Nasir},
78
+ journal={arXiv preprint arXiv:2003.10778},
79
+ year={2020}
80
+ }
81
+
82
+ @inproceedings{gamper2019pannuke,
83
+ title={Pannuke: An open pan-cancer histology dataset for nuclei instance segmentation and classification},
84
+ author={Gamper, Jevgenij and Koohbanani, Navid Alemi and Benet, Ksenija and Khuram, Ali and Rajpoot, Nasir},
85
+ booktitle={European Congress on Digital Pathology},
86
+ pages={11--19},
87
+ year={2019},
88
+ organization={Springer}
89
+ }
90
+ ```