Parth1503 commited on
Commit
e2d47d4
·
verified ·
1 Parent(s): 0d1da42

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - medical
7
+ - dermoscopy
8
+ - skin
9
+ - melanoma
10
+ - lesion-segmentation
11
+ pretty_name: ISIC 2017 — Skin Lesion Segmentation (Task 1)
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # ISIC 2017 — Skin Lesion Segmentation (Task 1)
17
+
18
+ Dermoscopic RGB images of skin lesions (melanoma / seborrheic keratosis / nevus)
19
+ with expert binary lesion-boundary masks, from the ISBI 2017 challenge
20
+ *"Skin Lesion Analysis Toward Melanoma Detection"* hosted by the International
21
+ Skin Imaging Collaboration (ISIC).
22
+
23
+ | Split | Images | Masks | Melanoma | Seborrheic keratosis | Nevus |
24
+ |---|---|---|---|---|---|
25
+ | train | 2000 | 2000 | 374 | 254 | 1372 |
26
+ | validation | 150 | 150 | 30 | 42 | 78 |
27
+ | test | 600 | 600 | 117 | 90 | 393 |
28
+
29
+ All three splits carry public ground truth. The test split is the official
30
+ **`Test_v2`** release — the final public revision of the challenge test set
31
+ (v1 was withdrawn upstream). Resolutions vary widely (~540×722 up to
32
+ 4499×6748 px).
33
+
34
+ ## Schema
35
+
36
+ | Column | Type | Notes |
37
+ |---|---|---|
38
+ | `image_id` | string | Stable ISIC Archive ID (`ISIC_XXXXXXX`) — cross-references all ISIC challenge editions |
39
+ | `image` | Image | Original challenge JPEG, bytes unmodified |
40
+ | `mask` | Image | Original expert mask PNG: **0 = background, 255 = lesion** |
41
+ | `age_approximate` | float | From the official challenge metadata CSV; null when unknown |
42
+ | `sex` | string | `male` / `female`; null when unknown |
43
+ | `in_isic2018_train` | bool | True if this image also appears in ISIC 2018 Task 1's training split (see below) |
44
+
45
+ Masks were created by expert clinicians via manual polyline tracing or a
46
+ supervised flood-fill workflow (one published mask per image; the per-image
47
+ method is not disclosed). The `*_superpixels.png` scaffolding files and the
48
+ Part-2 (dermoscopic features) / Part-3 (classification) ground truth belong to
49
+ other challenge tasks and are not mirrored here.
50
+
51
+ ## ⚠️ Overlap with ISIC 2018 (leakage warning)
52
+
53
+ ISIC challenge editions draw from the same growing archive. Measured by exact
54
+ `image_id` intersection against ISIC 2018 Task 1:
55
+
56
+ - **2,450 / 2,750 images (89.1%) of ISIC 2017 reappear in ISIC 2018's training
57
+ split** — train 1800/2000, validation 121/150, test 529/600.
58
+ - ISIC 2018's own validation/test splits share **zero** IDs with ISIC 2017.
59
+ - Consequence: a model trained on ISIC 2018 Task 1 training data has already
60
+ seen 650 of the 750 ISIC 2017 validation+test images. Filter on
61
+ `in_isic2018_train` (or use `isic_2017_2018_split_ids.json` at the repo root)
62
+ before treating the two datasets as independent benchmarks.
63
+ - Filename-level matching is a **lower bound**: pixel-level near-duplicates
64
+ (rescaled/re-encoded variants) exist across ISIC editions and against ISIC
65
+ 2016 — see Cassidy et al., *Medical Image Analysis* 75:102305 (2022),
66
+ https://github.com/mmu-dermatology-research/isic_duplicate_removal_strategy.
67
+
68
+ ## Provenance
69
+
70
+ Official author-hosted S3 bucket
71
+ (`https://isic-archive.s3.amazonaws.com/challenges/2017/`), zips verified
72
+ byte-exact against Content-Length; image/mask counts match the challenge paper
73
+ (2000/150/600). Original encoded bytes are embedded unmodified.
74
+
75
+ ## License
76
+
77
+ **CC-0 (public domain)**, per the 2017 section of the
78
+ [ISIC Challenge data page](https://challenge.isic-archive.com/data/).
79
+
80
+ ## Citation
81
+
82
+ ```bibtex
83
+ @inproceedings{codella2018skin,
84
+ title = {Skin lesion analysis toward melanoma detection: A challenge at
85
+ the 2017 International Symposium on Biomedical Imaging (ISBI),
86
+ hosted by the International Skin Imaging Collaboration (ISIC)},
87
+ author = {Codella, Noel C. F. and Gutman, David and Celebi, M. Emre and
88
+ Helba, Brian and Marchetti, Michael A. and Dusza, Stephen W. and
89
+ Kalloo, Aadi and Liopyris, Konstantinos and Mishra, Nabin and
90
+ Kittler, Harald and Halpern, Allan},
91
+ booktitle = {2018 IEEE 15th International Symposium on Biomedical Imaging (ISBI)},
92
+ pages = {168--172},
93
+ year = {2018},
94
+ doi = {10.1109/ISBI.2018.8363547}
95
+ }
96
+ ```