Angelou0516 commited on
Commit
630f361
·
verified ·
1 Parent(s): e62d6e4

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +49 -38
README.md CHANGED
@@ -1,40 +1,51 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: patient
5
- dtype: string
6
- - name: tissue
7
- dtype:
8
- class_label:
9
- names:
10
- '0': Unknown
11
- '1': Breast
12
- '2': Kidney
13
- '3': Liver
14
- '4': Prostate
15
- '5': Bladder
16
- '6': Colon
17
- '7': Stomach
18
- - name: image
19
- dtype: image
20
- - name: mask
21
- dtype: image
22
- - name: num_nuclei
23
- dtype: int32
24
- splits:
25
- - name: train
26
- num_bytes: 67579899
27
- num_examples: 37
28
- - name: test
29
- num_bytes: 24579545
30
- num_examples: 14
31
- download_size: 92166762
32
- dataset_size: 92159444
33
- configs:
34
- - config_name: default
35
- data_files:
36
- - split: train
37
- path: data/train-*
38
- - split: test
39
- path: data/test-*
40
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - medical
7
+ - histopathology
8
+ - nuclei
9
+ - h-and-e
10
+ - monuseg
11
+ pretty_name: MoNuSeg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # MoNuSeg (Multi-Organ Nucleus Segmentation)
15
+
16
+ H&E-stained histopathology images (from TCGA WSIs at 40x magnification)
17
+ with per-nucleus binary segmentation masks. MICCAI 2018 challenge.
18
+
19
+ ## Overview
20
+ - **Modality:** H&E histopathology (brightfield microscopy)
21
+ - **Image size:** 1000x1000 RGB
22
+ - **Samples:** 37 train + 14 test = 51
23
+ - **Organs (8 classes in `tissue`):** 0 Unknown, 1 Breast, 2 Kidney, 3 Liver,
24
+ 4 Prostate, 5 Bladder, 6 Colon, 7 Stomach. Test also includes lung and brain
25
+ (labelled as tissue=0 Unknown here where not in the 8-class list).
26
+ - **Ground truth:** single-annotator semantic binary mask (0 = tissue,
27
+ 1 = nucleus), derived by OR-combining all per-nucleus instance polygons.
28
+
29
+ ## Columns
30
+ | Column | Type | Notes |
31
+ |---|---|---|
32
+ | `patient` | string | TCGA patient ID (e.g. `TCGA-38-6178-01Z-00-DX1`) |
33
+ | `tissue` | ClassLabel(8) | Organ label |
34
+ | `image` | Image (RGB) | 1000x1000 H&E tile |
35
+ | `mask` | Image (mode `1`) | 1000x1000 binary nuclei mask |
36
+ | `num_nuclei` | int32 | Instance count used to build the mask |
37
+
38
+ ## Derivation
39
+ Source: RationAI/MoNuSeg parquet mirror of the Grand Challenge 2018 data.
40
+ The `instances` column of the source (a list of per-nucleus binary PIL
41
+ masks) was merged by logical OR to produce a semantic `mask` column. No
42
+ other preprocessing.
43
+
44
+ ## License
45
+ CC BY-NC-SA 4.0. Underlying WSIs come from TCGA (public NIH data).
46
+
47
+ ## Citations
48
+ - Kumar et al., "A Dataset and a Technique for Generalized Nuclear
49
+ Segmentation for Computational Pathology," IEEE TMI 36(7):1550-1560, 2017.
50
+ - Kumar et al., "A Multi-organ Nucleus Segmentation Challenge," IEEE TMI,
51
+ 2019.