Controllable Generation of Diverse Dermatological Imagery for Fair and Efficient Malignancy Classification
Paper • 2607.12987 • Published
How to use hcarrion/glomangioma with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("fill-in-base-model", torch_dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("hcarrion/glomangioma")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]This repository contains a disease-conditioned LoRA checkpoint from cgDDI (Controllable Generation of Diverse Dermatological Imagery), a hybrid framework designed for fair and efficient malignancy classification.
For more details, please refer to the paper: Controllable Generation of Diverse Dermatological Imagery for Fair and Efficient Malignancy Classification.
cgDDI is a hybrid framework designed to address the systematic lack of expertly annotated images in dermatology, especially for underrepresented skin tones and rare diseases. It operates by:
For more details on the training and generation pipeline, please refer to the official GitHub repository.
@inproceedings{carrion2026cgddi,
title = {Controllable Generation of Diverse Dermatological Imagery for Fair and Efficient Malignancy Classification},
author = {Carri{\'o}n, H{\'e}ctor and Norouzi, Narges},
booktitle = {Medical Image Computing and Computer-Assisted Intervention (MICCAI)},
year = {2026},
publisher = {Springer},
series = {Lecture Notes in Computer Science}
}