Angelou0516 commited on
Commit
85bb96e
·
verified ·
1 Parent(s): 3180224

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +85 -32
README.md CHANGED
@@ -1,36 +1,19 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image_id
5
- dtype: string
6
- - name: image
7
- dtype: image
8
- - name: mask
9
- dtype: image
10
- - name: split
11
- dtype: string
12
- - name: num_nuclei
13
- dtype: int32
14
- - name: height
15
- dtype: int32
16
- - name: width
17
- dtype: int32
18
- - name: usage
19
- dtype: string
20
- - name: is_grayscale
21
- dtype: bool
22
- splits:
23
- - name: train
24
- num_bytes: 64503513
25
- num_examples: 670
26
- - name: stage1_test
27
- num_bytes: 9680318
28
- num_examples: 65
29
- - name: stage2_test
30
- num_bytes: 13367920
31
- num_examples: 106
32
- download_size: 87548608
33
- dataset_size: 87551751
34
  configs:
35
  - config_name: default
36
  data_files:
@@ -41,3 +24,73 @@ configs:
41
  - split: stage2_test
42
  path: data/stage2_test-*
43
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc0-1.0
3
+ pretty_name: 2018 Data Science Bowl (BBBC038) - Nuclei Segmentation
4
+ task_categories:
5
+ - image-segmentation
6
+ tags:
7
+ - medical
8
+ - biomedical
9
+ - microscopy
10
+ - histopathology
11
+ - fluorescence
12
+ - nuclei
13
+ - cell-segmentation
14
+ - bbbc038
15
+ size_categories:
16
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  configs:
18
  - config_name: default
19
  data_files:
 
24
  - split: stage2_test
25
  path: data/stage2_test-*
26
  ---
27
+
28
+ # 2018 Data Science Bowl (BBBC038) - Nuclei Segmentation
29
+
30
+ 2D light-microscopy **cell-nucleus segmentation** assembled across many imaging
31
+ experiments (humans, mice, flies; 22 cell types, 15 resolutions, 30+ experiments).
32
+ The collection deliberately spans **multiple modalities**: fluorescence
33
+ (DAPI / Hoechst), brightfield **H&E histopathology**, and other brightfield -
34
+ making it a standard cross-modality nuclei-segmentation benchmark.
35
+
36
+ This is the official **BBBC038v1** release (Broad Bioimage Benchmark Collection),
37
+ the same data used in the Kaggle 2018 Data Science Bowl. **License: CC0 / public
38
+ domain.**
39
+
40
+ ## Contents & splits
41
+
42
+ | Split | Images | Nuclei | Ground-truth source |
43
+ |-------|-------:|-------:|---------------------|
44
+ | `train` (stage1_train) | 670 | 29,461 | native per-nucleus PNG instance masks |
45
+ | `stage1_test` (stage1_test) | 65 | 4,152 | RLE in `stage1_solution.csv` (post-competition) |
46
+ | `stage2_test` (stage2_test) | 106 | 3,716 | RLE in `stage2_solution_final.csv` (post-competition) |
47
+ | **Total** | **841** | **37,329** | |
48
+
49
+ **Faithful-naming notes**
50
+ - Most papers cite "DSB2018" = `stage1_train` (670) only, since that is the only
51
+ split distributing *native* instance masks. This repo ships the **full 3-stage**
52
+ set; the test-stage GT was decoded from the official solution-CSV RLE.
53
+ - The raw `stage2_test_final` archive contains ~3,019 images, but only **106 are
54
+ scored** - the rest are intentional **decoys** flagged `Usage=Ignored`. **Only
55
+ the 106 scored images are included here.**
56
+
57
+ ## Ground truth
58
+
59
+ `mask` is a **binary semantic** nucleus mask (mode `L`, values `{0, 255}`): the
60
+ **union of all per-nucleus instances**. For `train` it is the union of the native
61
+ per-nucleus PNG masks; for the test splits it is the union of the RLE-decoded
62
+ nuclei. The RLE decoder was validated against the native train masks
63
+ (pixel agreement = 1.000000). The original per-nucleus **instance** masks remain
64
+ available at [BBBC038](https://bbbc.broadinstitute.org/BBBC038) for
65
+ instance-segmentation use.
66
+
67
+ ## Columns
68
+
69
+ | Column | Type | Notes |
70
+ |--------|------|-------|
71
+ | `image_id` | string | source hash id |
72
+ | `image` | Image | RGB (RGBA fluorescence normalized to RGB) |
73
+ | `mask` | Image | binary semantic, `{0,255}` |
74
+ | `split` | string | `stage1_train` / `stage1_test` / `stage2_test` |
75
+ | `num_nuclei` | int32 | nuclei in this image |
76
+ | `height`,`width` | int32 | image dimensions |
77
+ | `usage` | string | `null` (train) / `Public` (s1) / `Private` (s2) |
78
+ | `is_grayscale` | bool | derived (R==G==B): fluorescence/brightfield vs H&E color |
79
+
80
+ `metadata.xlsx` (repo root) is the official 43-row per-experiment provenance table
81
+ (cell type, stain, SNR, resolution).
82
+
83
+ ## Provenance, overlap & integrity
84
+
85
+ - **Provenance:** official BBBC038v1 (Broad Institute), CC0. Counts reconcile with
86
+ the paper (670 / 65 / 106).
87
+ - **Overlap (leakage hazards):** a small fraction of images overlap **BBBC039**.
88
+ The H&E subset shares source-level (TCGA-derived) lineage with H&E nuclei sets
89
+ such as MoNuSeg / PanNuke, though no individually-confirmed shared images.
90
+ - **Curated collection:** assembled from 30+ independent experiments / donor labs.
91
+
92
+ ## Citation
93
+
94
+ Caicedo, J.C., Goodman, A., Karhohs, K.W., et al. *Nucleus segmentation across
95
+ imaging experiments: the 2018 Data Science Bowl.* **Nature Methods** 16(12),
96
+ 1247-1253 (2019). doi:10.1038/s41592-019-0612-7