-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.py
566 lines (556 loc) · 26.2 KB
/
info.py
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
__version__ = "2.2.2"
import os
from os.path import expanduser
import warnings
def get_default_root():
home = expanduser("~")
dirpath = os.path.join(home, ".medmnist")
try:
if not os.path.exists(dirpath):
os.makedirs(dirpath)
except:
warnings.warn("Failed to setup default root.")
dirpath = None
return dirpath
DEFAULT_ROOT = get_default_root()
HOMEPAGE = "https://github.com/kakumarabhishek/Corrected-Skin-Image-Datasets/"
INFO = {
"pathmnist": {
"python_class": "PathMNIST",
"description":
"The PathMNIST is based on a prior study for predicting survival from colorectal cancer histology slides, providing a dataset (NCT-CRC-HE-100K) of 100,000 non-overlapping image patches from hematoxylin & eosin stained histological images, and a test dataset (CRC-VAL-HE-7K) of 7,180 image patches from a different clinical center. The dataset is comprised of 9 types of tissues, resulting in a multi-class classification task. We resize the source images of 3×224×224 into 3×28×28, and split NCT-CRC-HE-100K into training and validation set with a ratio of 9:1. The CRC-VAL-HE-7K is treated as the test set.",
"url":
"https://zenodo.org/record/6496656/files/pathmnist.npz?download=1",
"MD5": "a8b06965200029087d5bd730944a56c1",
"task": "multi-class",
"label": {
"0": "adipose",
"1": "background",
"2": "debris",
"3": "lymphocytes",
"4": "mucus",
"5": "smooth muscle",
"6": "normal colon mucosa",
"7": "cancer-associated stroma",
"8": "colorectal adenocarcinoma epithelium"
},
"n_channels": 3,
"n_samples": {
"train": 89996,
"val": 10004,
"test": 7180
},
"license": "CC BY 4.0"
},
"chestmnist": {
"python_class": "ChestMNIST",
"description":
"The ChestMNIST is based on the NIH-ChestXray14 dataset, a dataset comprising 112,120 frontal-view X-Ray images of 30,805 unique patients with the text-mined 14 disease labels, which could be formulized as a multi-label binary-class classification task. We use the official data split, and resize the source images of 1×1024×1024 into 1×28×28.",
"url":
"https://zenodo.org/record/6496656/files/chestmnist.npz?download=1",
"MD5": "02c8a6516a18b556561a56cbdd36c4a8",
"task": "multi-label, binary-class",
"label": {
"0": "atelectasis",
"1": "cardiomegaly",
"2": "effusion",
"3": "infiltration",
"4": "mass",
"5": "nodule",
"6": "pneumonia",
"7": "pneumothorax",
"8": "consolidation",
"9": "edema",
"10": "emphysema",
"11": "fibrosis",
"12": "pleural",
"13": "hernia"
},
"n_channels": 1,
"n_samples": {
"train": 78468,
"val": 11219,
"test": 22433
},
"license": "CC BY 4.0"
},
"dermamnist": {
"python_class": "DermaMNIST",
"description":
"The DermaMNIST is based on the HAM10000, a large collection of multi-source dermatoscopic images of common pigmented skin lesions. The dataset consists of 10,015 dermatoscopic images categorized as 7 different diseases, formulized as a multi-class classification task. We split the images into training, validation and test set with a ratio of 7:1:2. The source images of 3×600×450 are resized into 3×28×28.",
"url":
"https://zenodo.org/record/6496656/files/dermamnist.npz?download=1",
"MD5": "0744692d530f8e62ec473284d019b0c7",
"task": "multi-class",
"label": {
"0": "actinic keratoses and intraepithelial carcinoma",
"1": "basal cell carcinoma",
"2": "benign keratosis-like lesions",
"3": "dermatofibroma",
"4": "melanoma",
"5": "melanocytic nevi",
"6": "vascular lesions"
},
"n_channels": 3,
"n_samples": {
"train": 7007,
"val": 1003,
"test": 2005
},
"license": "CC BY-NC 4.0"
},
"octmnist": {
"python_class": "OCTMNIST",
"description":
"The OCTMNIST is based on a prior dataset of 109,309 valid optical coherence tomography (OCT) images for retinal diseases. The dataset is comprised of 4 diagnosis categories, leading to a multi-class classification task. We split the source training set with a ratio of 9:1 into training and validation set, and use its source validation set as the test set. The source images are gray-scale, and their sizes are (384−1,536)×(277−512). We center-crop the images and resize them into 1×28×28.",
"url":
"https://zenodo.org/record/6496656/files/octmnist.npz?download=1",
"MD5": "c68d92d5b585d8d81f7112f81e2d0842",
"task": "multi-class",
"label": {
"0": "choroidal neovascularization",
"1": "diabetic macular edema",
"2": "drusen",
"3": "normal"
},
"n_channels": 1,
"n_samples": {
"train": 97477,
"val": 10832,
"test": 1000
},
"license": "CC BY 4.0"
},
"pneumoniamnist": {
"python_class": "PneumoniaMNIST",
"description":
"The PneumoniaMNIST is based on a prior dataset of 5,856 pediatric chest X-Ray images. The task is binary-class classification of pneumonia against normal. We split the source training set with a ratio of 9:1 into training and validation set and use its source validation set as the test set. The source images are gray-scale, and their sizes are (384−2,916)×(127−2,713). We center-crop the images and resize them into 1×28×28.",
"url":
"https://zenodo.org/record/6496656/files/pneumoniamnist.npz?download=1",
"MD5": "28209eda62fecd6e6a2d98b1501bb15f",
"task": "binary-class",
"label": {
"0": "normal",
"1": "pneumonia"
},
"n_channels": 1,
"n_samples": {
"train": 4708,
"val": 524,
"test": 624
},
"license": "CC BY 4.0"
},
"retinamnist": {
"python_class": "RetinaMNIST",
"description":
"The RetinaMNIST is based on the DeepDRiD challenge, which provides a dataset of 1,600 retina fundus images. The task is ordinal regression for 5-level grading of diabetic retinopathy severity. We split the source training set with a ratio of 9:1 into training and validation set, and use the source validation set as the test set. The source images of 3×1,736×1,824 are center-cropped and resized into 3×28×28.",
"url":
"https://zenodo.org/record/6496656/files/retinamnist.npz?download=1",
"MD5": "bd4c0672f1bba3e3a89f0e4e876791e4",
"task": "ordinal-regression",
"label": {
"0": "0",
"1": "1",
"2": "2",
"3": "3",
"4": "4"
},
"n_channels": 3,
"n_samples": {
"train": 1080,
"val": 120,
"test": 400
},
"license": "CC BY 4.0"
},
"breastmnist": {
"python_class": "BreastMNIST",
"description":
"The BreastMNIST is based on a dataset of 780 breast ultrasound images. It is categorized into 3 classes: normal, benign, and malignant. As we use low-resolution images, we simplify the task into binary classification by combining normal and benign as positive and classifying them against malignant as negative. We split the source dataset with a ratio of 7:1:2 into training, validation and test set. The source images of 1×500×500 are resized into 1×28×28.",
"url":
"https://zenodo.org/record/6496656/files/breastmnist.npz?download=1",
"MD5": "750601b1f35ba3300ea97c75c52ff8f6",
"task": "binary-class",
"label": {
"0": "malignant",
"1": "normal, benign"
},
"n_channels": 1,
"n_samples": {
"train": 546,
"val": 78,
"test": 156
},
"license": "CC BY 4.0"
},
"bloodmnist": {
"python_class": "BloodMNIST",
"description":
"The BloodMNIST is based on a dataset of individual normal cells, captured from individuals without infection, hematologic or oncologic disease and free of any pharmacologic treatment at the moment of blood collection. It contains a total of 17,092 images and is organized into 8 classes. We split the source dataset with a ratio of 7:1:2 into training, validation and test set. The source images with resolution 3×360×363 pixels are center-cropped into 3×200×200, and then resized into 3×28×28.",
"url":
"https://zenodo.org/record/6496656/files/bloodmnist.npz?download=1",
"MD5": "7053d0359d879ad8a5505303e11de1dc",
"task": "multi-class",
"label": {
"0": "basophil",
"1": "eosinophil",
"2": "erythroblast",
"3": "immature granulocytes(myelocytes, metamyelocytes and promyelocytes)",
"4": "lymphocyte",
"5": "monocyte",
"6": "neutrophil",
"7": "platelet"
},
"n_channels": 3,
"n_samples": {
"train": 11959,
"val": 1712,
"test": 3421
},
"license": "CC BY 4.0"
},
"tissuemnist": {
"python_class": "TissueMNIST",
"description":
"We use the BBBC051, available from the Broad Bioimage Benchmark Collection. The dataset contains 236,386 human kidney cortex cells, segmented from 3 reference tissue specimens and organized into 8 categories. We split the source dataset with a ratio of 7:1:2 into training, validation and test set. Each gray-scale image is 32×32×7 pixels, where 7 denotes 7 slices. We take maximum values across the slices and resize them into 28×28 gray-scale images.",
"url":
"https://zenodo.org/record/6496656/files/tissuemnist.npz?download=1",
"MD5": "ebe78ee8b05294063de985d821c1c34b",
"task": "multi-class",
"label": {
"0": "Collecting Duct, Connecting Tubule",
"1": "Distal Convoluted Tubule",
"2": "Glomerular endothelial cells",
"3": "Interstitial endothelial cells",
"4": "Leukocytes",
"5": "Podocytes",
"6": "Proximal Tubule Segments",
"7": "Thick Ascending Limb"
},
"n_channels": 1,
"n_samples": {
"train": 165466,
"val": 23640,
"test": 47280
},
"license": "CC BY 4.0"
},
"organamnist": {
"python_class": "OrganAMNIST",
"description":
"The OrganAMNIST is based on 3D computed tomography (CT) images from Liver Tumor Segmentation Benchmark (LiTS). It is renamed from OrganMNIST_Axial (in MedMNIST v1) for simplicity. We use bounding-box annotations of 11 body organs from another study to obtain the organ labels. Hounsfield-Unit (HU) of the 3D images are transformed into gray-scale with an abdominal window. We crop 2D images from the center slices of the 3D bounding boxes in axial views (planes). The images are resized into 1×28×28 to perform multi-class classification of 11 body organs. 115 and 16 CT scans from the source training set are used as training and validation set, respectively. The 70 CT scans from the source test set are treated as the test set.",
"url":
"https://zenodo.org/record/6496656/files/organamnist.npz?download=1",
"MD5": "866b832ed4eeba67bfb9edee1d5544e6",
"task": "multi-class",
"label": {
"0": "bladder",
"1": "femur-left",
"2": "femur-right",
"3": "heart",
"4": "kidney-left",
"5": "kidney-right",
"6": "liver",
"7": "lung-left",
"8": "lung-right",
"9": "pancreas",
"10": "spleen"
},
"n_channels": 1,
"n_samples": {
"train": 34581,
"val": 6491,
"test": 17778
},
"license": "CC BY 4.0"
},
"organcmnist": {
"python_class": "OrganCMNIST",
"description":
"The OrganCMNIST is based on 3D computed tomography (CT) images from Liver Tumor Segmentation Benchmark (LiTS). It is renamed from OrganMNIST_Coronal (in MedMNIST v1) for simplicity. We use bounding-box annotations of 11 body organs from another study to obtain the organ labels. Hounsfield-Unit (HU) of the 3D images are transformed into gray-scale with an abdominal window. We crop 2D images from the center slices of the 3D bounding boxes in coronal views (planes). The images are resized into 1×28×28 to perform multi-class classification of 11 body organs. 115 and 16 CT scans from the source training set are used as training and validation set, respectively. The 70 CT scans from the source test set are treated as the test set.",
"url":
"https://zenodo.org/record/6496656/files/organcmnist.npz?download=1",
"MD5": "0afa5834fb105f7705a7d93372119a21",
"task": "multi-class",
"label": {
"0": "bladder",
"1": "femur-left",
"2": "femur-right",
"3": "heart",
"4": "kidney-left",
"5": "kidney-right",
"6": "liver",
"7": "lung-left",
"8": "lung-right",
"9": "pancreas",
"10": "spleen"
},
"n_channels": 1,
"n_samples": {
"train": 13000,
"val": 2392,
"test": 8268
},
"license": "CC BY 4.0"
},
"organsmnist": {
"python_class": "OrganSMNIST",
"description":
"The OrganSMNIST is based on 3D computed tomography (CT) images from Liver Tumor Segmentation Benchmark (LiTS). It is renamed from OrganMNIST_Sagittal (in MedMNIST v1) for simplicity. We use bounding-box annotations of 11 body organs from another study to obtain the organ labels. Hounsfield-Unit (HU) of the 3D images are transformed into gray-scale with an abdominal window. We crop 2D images from the center slices of the 3D bounding boxes in sagittal views (planes). The images are resized into 1×28×28 to perform multi-class classification of 11 body organs. 115 and 16 CT scans from the source training set are used as training and validation set, respectively. The 70 CT scans from the source test set are treated as the test set.",
"url":
"https://zenodo.org/record/6496656/files/organsmnist.npz?download=1",
"MD5": "e5c39f1af030238290b9557d9503af9d",
"task": "multi-class",
"label": {
"0": "bladder",
"1": "femur-left",
"2": "femur-right",
"3": "heart",
"4": "kidney-left",
"5": "kidney-right",
"6": "liver",
"7": "lung-left",
"8": "lung-right",
"9": "pancreas",
"10": "spleen"
},
"n_channels": 1,
"n_samples": {
"train": 13940,
"val": 2452,
"test": 8829
},
"license": "CC BY 4.0"
},
"organmnist3d": {
"python_class": "OrganMNIST3D",
"description":
"The source of the OrganMNIST3D is the same as that of the Organ{A,C,S}MNIST. Instead of 2D images, we directly use the 3D bounding boxes and process the images into 28×28×28 to perform multi-class classification of 11 body organs. The same 115 and 16 CT scans as the Organ{A,C,S}MNIST from the source training set are used as training and validation set, respectively, and the same 70 CT scans as the Organ{A,C,S}MNIST from the source test set are treated as the test set.",
"url":
"https://zenodo.org/record/6496656/files/organmnist3d.npz?download=1",
"MD5": "21f0a239e7f502e6eca33c3fc453c0b6",
"task": "multi-class",
"label": {
"0": "liver",
"1": "kidney-right",
"2": "kidney-left",
"3": "femur-right",
"4": "femur-left",
"5": "bladder",
"6": "heart",
"7": "lung-right",
"8": "lung-left",
"9": "spleen",
"10": "pancreas"
},
"n_channels": 1,
"n_samples": {
"train": 972,
"val": 161,
"test": 610
},
"license": "CC BY 4.0"
},
"nodulemnist3d": {
"python_class": "NoduleMNIST3D",
"description":
"The NoduleMNIST3D is based on the LIDC-IDRI, a large public lung nodule dataset, containing images from thoracic CT scans. The dataset is designed for both lung nodule segmentation and 5-level malignancy classification task. To perform binary classification, we categorize cases with malignancy level 1/2 into negative class and 4/5 into positive class, ignoring the cases with malignancy level 3. We split the source dataset with a ratio of 7:1:2 into training, validation and test set, and center-crop the spatially normalized images (with a spacing of 1mm×1mm×1mm) into 28×28×28.",
"url":
"https://zenodo.org/record/6496656/files/nodulemnist3d.npz?download=1",
"MD5": "8755a7e9e05a4d9ce80a24c3e7a256f3",
"task": "binary-class",
"label": {
"0": "benign",
"1": "malignant"
},
"n_channels": 1,
"n_samples": {
"train": 1158,
"val": 165,
"test": 310
},
"license": "CC BY 4.0"
},
"adrenalmnist3d": {
"python_class": "AdrenalMNIST3D",
"description":
"The AdrenalMNIST3D is a new 3D shape classification dataset, consisting of shape masks from 1,584 left and right adrenal glands (i.e., 792 patients). Collected from Zhongshan Hospital Affiliated to Fudan University, each 3D shape of adrenal gland is annotated by an expert endocrinologist using abdominal computed tomography (CT), together with a binary classification label of normal adrenal gland or adrenal mass. Considering patient privacy, we do not provide the source CT scans, but the real 3D shapes of adrenal glands and their classification labels. We calculate the center of adrenal and resize the center-cropped 64mm×64mm×64mm volume into 28×28×28. The dataset is randomly split into training/validation/test set of 1,188/98/298 on a patient level.",
"url":
"https://zenodo.org/record/6496656/files/adrenalmnist3d.npz?download=1",
"MD5": "bbd3c5a5576322bc4cdfea780653b1ce",
"task": "binary-class",
"label": {
"0": "normal",
"1": "hyperplasia"
},
"n_channels": 1,
"n_samples": {
"train": 1188,
"val": 98,
"test": 298
},
"license": "CC BY 4.0"
},
"fracturemnist3d": {
"python_class": "FractureMNIST3D",
"description":
"The FractureMNIST3D is based on the RibFrac Dataset, containing around 5,000 rib fractures from 660 computed tomography 153 (CT) scans. The dataset organizes detected rib fractures into 4 clinical categories (i.e., buckle, nondisplaced, displaced, and segmental rib fractures). As we use low-resolution images, we disregard segmental rib fractures and classify 3 types of rib fractures (i.e., buckle, nondisplaced, and displaced). For each annotated fracture area, we calculate its center and resize the center-cropped 64mm×64mm×64mm image into 28×28×28. The official split of training, validation and test set is used.",
"url":
"https://zenodo.org/record/6496656/files/fracturemnist3d.npz?download=1",
"MD5": "6aa7b0143a6b42da40027a9dda61302f",
"task": "multi-class",
"label": {
"0": "buckle rib fracture",
"1": "nondisplaced rib fracture",
"2": "displaced rib fracture"
},
"n_channels": 1,
"n_samples": {
"train": 1027,
"val": 103,
"test": 240
},
"license": "CC BY 4.0"
},
"vesselmnist3d": {
"python_class": "VesselMNIST3D",
"description":
"The VesselMNIST3D is based on an open-access 3D intracranial aneurysm dataset, IntrA, containing 103 3D models (meshes) of entire brain vessels collected by reconstructing MRA images. 1,694 healthy vessel segments and 215 aneurysm segments are generated automatically from the complete models. We fix the non-watertight mesh with PyMeshFix and voxelize the watertight mesh with trimesh into 28×28×28 voxels. We split the source dataset with a ratio of 7:1:2 into training, validation and test set.",
"url":
"https://zenodo.org/record/6496656/files/vesselmnist3d.npz?download=1",
"MD5": "2ba5b80617d705141f3f85627108fce8",
"task": "binary-class",
"label": {
"0": "vessel",
"1": "aneurysm"
},
"n_channels": 1,
"n_samples": {
"train": 1335,
"val": 192,
"test": 382
},
"license": "CC BY 4.0"
},
"synapsemnist3d": {
"python_class": "SynapseMNIST3D",
"description":
"The SynapseMNIST3D is a new 3D volume dataset to classify whether a synapse is excitatory or inhibitory. It uses a 3D image volume of an adult rat acquired by a multi-beam scanning electron microscope. The original data is of the size 100×100×100um^3 and the resolution 8×8×30nm^3, where a (30um)^3 sub-volume was used in the MitoEM dataset with dense 3D mitochondria instance segmentation labels. Three neuroscience experts segment a pyramidal neuron within the whole volume and proofread all the synapses on this neuron with excitatory/inhibitory labels. For each labeled synaptic location, we crop a 3D volume of 1024×1024×1024nm^3 and resize it into 28×28×28 voxels. Finally, the dataset is randomly split with a ratio of 7:1:2 into training, validation and test set.",
"url":
"https://zenodo.org/record/6496656/files/synapsemnist3d.npz?download=1",
"MD5": "1235b78a3cd6280881dd7850a78eadb6",
"task": "binary-class",
"label": {
"0": "inhibitory synapse",
"1": "excitatory synapse"
},
"n_channels": 1,
"n_samples": {
"train": 1230,
"val": 177,
"test": 352
},
"license": "CC BY 4.0"
},
"dermamnist_corrected_28": {
"python_class": "DermaMNIST_Corrected_28",
"description":
"This is a corrected version of the original DermaMNIST dataset after fixing data leakage across partitions. The source images of 3×600×450 are resized into 3×28×28.",
"url":
"https://zenodo.org/records/11101338/files/dermamnist_corrected_28.npz?download=1",
"MD5": "96e2862980877d45d9cacb5c25de6950",
"task": "multi-class",
"label": {
"0": "actinic keratoses and intraepithelial carcinoma",
"1": "basal cell carcinoma",
"2": "benign keratosis-like lesions",
"3": "dermatofibroma",
"4": "melanoma",
"5": "melanocytic nevi",
"6": "vascular lesions"
},
"n_channels": 3,
"n_samples": {
"train": 8215,
"val": 573,
"test": 1227
},
"license": "CC BY-NC 4.0"
},
"dermamnist_corrected_224": {
"python_class": "DermaMNIST_Corrected_224",
"description":
"This is a corrected version of the original DermaMNIST dataset after fixing data leakage across partitions. The source images of 3×600×450 are resized into 3×224×224.",
"url":
"https://zenodo.org/records/11101338/files/dermamnist_corrected_224.npz?download=1",
"MD5": "84920fb70c83b234c295b6f0d4ae2bc0",
"task": "multi-class",
"label": {
"0": "actinic keratoses and intraepithelial carcinoma",
"1": "basal cell carcinoma",
"2": "benign keratosis-like lesions",
"3": "dermatofibroma",
"4": "melanoma",
"5": "melanocytic nevi",
"6": "vascular lesions"
},
"n_channels": 3,
"n_samples": {
"train": 8215,
"val": 573,
"test": 1227
},
"license": "CC BY-NC 4.0"
},
"dermamnist_extended_28": {
"python_class": "DermaMNIST_Extended_28",
"description":
"This is an extended version of the original DermaMNIST dataset, constructed by resizing the 3×600×450 source images of ISIC 2018 Challenge Task 3 into 3×28×28.",
"url":
"https://zenodo.org/records/11101338/files/dermamnist_extended_28.npz?download=1",
"MD5": "ecacbf37d9cc79340226bd19bd4c7463",
"task": "multi-class",
"label": {
"0": "actinic keratoses and intraepithelial carcinoma",
"1": "basal cell carcinoma",
"2": "benign keratosis-like lesions",
"3": "dermatofibroma",
"4": "melanoma",
"5": "melanocytic nevi",
"6": "vascular lesions"
},
"n_channels": 3,
"n_samples": {
"train": 10015,
"val": 193,
"test": 1511
},
"license": "CC BY-NC 4.0"
},
"dermamnist_extended_224": {
"python_class": "DermaMNIST_Extended_224",
"description":
"This is an extended version of the original DermaMNIST dataset, constructed by resizing the 3×600×450 source images of ISIC 2018 Challenge Task 3 into 3×224×224.",
"url":
"https://zenodo.org/records/11101338/files/dermamnist_extended_224.npz?download=1",
"MD5": "b59d6a78a036a0bb48a1eff13d94333c",
"task": "multi-class",
"label": {
"0": "actinic keratoses and intraepithelial carcinoma",
"1": "basal cell carcinoma",
"2": "benign keratosis-like lesions",
"3": "dermatofibroma",
"4": "melanoma",
"5": "melanocytic nevi",
"6": "vascular lesions"
},
"n_channels": 3,
"n_samples": {
"train": 10015,
"val": 193,
"test": 1511
},
"license": "CC BY-NC 4.0"
}
}