Datasets:
File size: 21,597 Bytes
53120b1 |
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 |
"""MedMNIST v2: A Large-Scale Lightweight Benchmark for 2D and 3D Biomedical Image Classification"""
import numpy as np
import datasets
_DESCRIPTION = """\
MedMNIST v2 is a large-scale MNIST-like collection of standardized biomedical images, including 12 datasets for 2D and 6 datasets for 3D.
"""
_HOMEPAGE = "https://medmnist.com/"
_LICENSE = "CC BY 4.0"
_CITATION = """\
@article{medmnistv2,
title={MedMNIST v2-A large-scale lightweight benchmark for 2D and 3D biomedical image classification},
author={Yang, Jiancheng and Shi, Rui and Wei, Donglai and Liu, Zequan and Zhao, Lin and Ke, Bilian and Pfister, Hanspeter and Ni, Bingbing},
journal={Scientific Data},
volume={10},
number={1},
pages={41},
year={2023},
publisher={Nature Publishing Group UK London}
}
@inproceedings{medmnistv1,
title={MedMNIST Classification Decathlon: A Lightweight AutoML Benchmark for Medical Image Analysis},
author={Yang, Jiancheng and Shi, Rui and Ni, Bingbing},
booktitle={IEEE 18th International Symposium on Biomedical Imaging (ISBI)},
pages={191--195},
year={2021}
}
"""
# TODO: Add link to the official dataset URLs here
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
_URLS = {
"first_domain": "https://huggingface.co/great-new-dataset-first_domain.zip",
"second_domain": "https://huggingface.co/great-new-dataset-second_domain.zip",
}
_DATA_DIR_URL = "data"
class MedmnistV2Config(datasets.BuilderConfig):
def __init__(
self,
name,
version=datasets.Version("2.1.0"),
description=None,
class_labels=None,
n_channels=None,
multi_label=False,
):
super().__init__(name=name, version=version, description=description)
self.class_labels = list(class_labels.values())
self.n_channels = n_channels
self.multi_label = multi_label
class MedmnistV2(datasets.GeneratorBasedBuilder):
"""MedMNIST v2"""
BUILDER_CONFIGS = [
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
multi_label=True,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "choroidal neovascularization",
"1": "diabetic macular edema",
"2": "drusen",
"3": "normal",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "normal",
"1": "pneumonia",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "0",
"1": "1",
"2": "2",
"3": "3",
"4": "4",
},
n_channels=3,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "malignant",
"1": "normal, benign",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "basophil",
"1": "eosinophil",
"2": "erythroblast",
"3": "immature granulocytes(myelocytes, metamyelocytes and promyelocytes)",
"4": "lymphocyte",
"5": "monocyte",
"6": "neutrophil",
"7": "platelet",
},
n_channels=3,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"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,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "benign",
"1": "malignant",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "normal",
"1": "hyperplasia",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "buckle rib fracture",
"1": "nondisplaced rib fracture",
"2": "displaced rib fracture",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "vessel",
"1": "aneurysm",
},
n_channels=1,
),
MedmnistV2Config(
name="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.",
class_labels={
"0": "inhibitory synapse",
"1": "excitatory synapse",
},
n_channels=1,
),
]
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION + f"\n{self.config.description}",
features=datasets.Features(
{
"image": datasets.Image()
if self.config.name[-2:] != "3d"
else datasets.Array4D(shape=(1, 28, 28, 28), dtype="uint8"),
"label": datasets.ClassLabel(names=self.config.class_labels)
if not self.config.multi_label
else datasets.Sequence(
datasets.ClassLabel(names=[False, True]), length=len(self.config.class_labels)
),
}
),
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
data_path = dl_manager.download(f"{_DATA_DIR_URL}/{self.config.name}.npz")
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"data_path": data_path,
"split": "train",
},
),
datasets.SplitGenerator(
name=datasets.Split.VALIDATION,
gen_kwargs={
"data_path": data_path,
"split": "val",
},
),
datasets.SplitGenerator(
name=datasets.Split.TEST,
gen_kwargs={
"data_path": data_path,
"split": "test",
},
),
]
def _generate_examples(self, data_path, split):
npz_file = np.load(data_path)
imgs = npz_file[f"{split}_images"]
labels = npz_file[f"{split}_labels"]
for key, (img, label) in enumerate(zip(imgs, labels)):
label = label.astype(int)
if not self.config.multi_label:
label = label.item()
if self.config.name[-2:] == "3d":
img = np.stack([img] * 1, axis=0)
yield key, {
"image": img,
"label": label,
}
|