dheraingoud/dermalens-datasets
DermaLens Skin Cancer Dataset This dataset repo documents the data pipeline used to train the DermaLens V3 skin cancer classification model. Source Dataset HAM10000 (Human Against Machine with 10000 training images) — accessed via marmal88/skin_cancer on HuggingFace. from datasets import load_dataset ds = load_dataset("marmal88/skin_cancer") Dataset Statistics Split Images Malignant Benign Positive Rate Train 10,683 ~2,093 ~8,590 19.6%… See the full description on the dataset page: https://huggingface.co/datasets/dheraingoud/dermalens-datasets.
DermaLens Skin Cancer Dataset
This dataset repo documents the data pipeline used to train the DermaLens V3 skin cancer classification model.
Source Dataset
HAM10000 (Human Against Machine with 10000 training images) — accessed via `marmal88/skin_cancer` on HuggingFace.
from datasets import load_dataset
ds = load_dataset("marmal88/skin_cancer")Dataset Statistics
Label Mapping (Binary)
MALIGNANT_CLASSES = {"melanoma", "basal_cell_carcinoma", "actinic_keratoses"}
label = 1 if item["dx"] in MALIGNANT_CLASSES else 0Preprocessing
- Resize: 384x384 pixels
- Normalization: ImageNet stats (mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])
- Augmentation (train only): RandomResizedCrop, Flips, Rotation, ColorJitter, CoarseDropout, CLAHE
- Oversampling: Malignant samples repeated 3x
Model Performance (DermaLens V3)
Model weights: `dheraingoud/dermalens-model`
