RAD-DINO is shared for research purposes only.
It is
not meant to be used for clinical practice
.
The model is a vision backbone that can be plugged to other models for downstream tasks.
Some potential uses are:
Image classification, with a classifier trained on top of the
CLS
token
Image segmentation, with a decoder trained using the patch tokens
Clustering, using the image embeddings directly
Image retrieval, using nearest neighbors of the CLS token
Report generation, with a language model to decode text
Fine-tuning RAD-DINO is typically not necessary to obtain good performance in downstream tasks.
Biases, risks, and limitations
RAD-DINO was trained with data from three countries, therefore it might be biased towards population in the training data.
Underlying biases of the training datasets may not be well characterized.
Getting started
Let us first write an auxiliary function to download a chest X-ray.
Now let us download the model and encode an image.
>>> import torch
>>> from transformers import AutoModel
>>> from transformers import AutoImageProcessor
>>>
>>> # Download the model>>> repo = "microsoft/rad-dino">>> model = AutoModel.from_pretrained(repo)
>>>
>>> # The processor takes a PIL image, performs resizing, center-cropping, and>>> # intensity normalization using stats from MIMIC-CXR, and returns a>>> # dictionary with a PyTorch tensor ready for the encoder>>> processor = AutoImageProcessor.from_pretrained(repo)
>>>
>>> # Download and preprocess a chest X-ray>>> image = download_sample_image()
>>> image.size # (width, height)
(2765, 2505)
>>> inputs = processor(images=image, return_tensors="pt")
>>>
>>> # Encode the image!>>> with torch.inference_mode():
>>> outputs = model(**inputs)
>>>
>>> # Look at the CLS embeddings>>> cls_embeddings = outputs.pooler_output
>>> cls_embeddings.shape # (batch_size, num_channels)
torch.Size([1, 768])
If we are interested in the feature maps, we can reshape the patch embeddings into a grid.
We will use
einops
(install with
pip install einops
) for this.
>>> defreshape_patch_embeddings(flat_tokens: torch.Tensor) -> torch.Tensor:
... """Reshape flat list of patch tokens into a nice grid."""... from einops import rearrange
... image_size = processor.crop_size["height"]
... patch_size = model.config.patch_size
... embeddings_size = image_size // patch_size
... patches_grid = rearrange(flat_tokens, "b (h w) c -> b c h w", h=embeddings_size)
... return patches_grid
...
>>> flat_patch_embeddings = outputs.last_hidden_state[:, 1:] # first token is CLS>>> reshaped_patch_embeddings = reshape_patch_embeddings(flat_patch_embeddings)
>>> reshaped_patch_embeddings.shape # (batch_size, num_channels, height, width)
torch.Size([1, 768, 37, 37])
Training details
Training data
We used images from five public, deidentified chest X-ray datasets to train this checkpoint of RAD-DINO.
Images in the validation and test sets used to train
MAIRA
were excluded from the training set of RAD-DINO.
The list of image files used for training is available at
./training_images.csv
.
Note this checkpoint is different from the one in the paper, where some private data was used (and fewer GPUs).
The checkpoint shared here is trained for 35 000 iterations (the total number of iterations in the run was 100 000, but we selected this checkpoint using linear probing on the validation sets of the evaluation datasets described in the paper).
We used 16 nodes with 4 A100 GPUs each, and a batch size of 40 images per GPU.
Training procedure
We refer to the
manuscript
for a detailed description of the training procedure.
Preprocessing
All DICOM files were resized using B-spline interpolation so that their shorter size was 518, min-max scaled to [0, 255], and stored as PNG files.
Training hyperparameters
Training regime:
fp16 using PyTorch-FSDP mixed-precision.
Evaluation
Our evaluation is best described in the
manuscript
.
@misc{perezgarcia2024raddino,
title={{RAD-DINO}: Exploring Scalable Medical Image Encoders Beyond Text Supervision},
author={Fernando Pérez-García and Harshita Sharma and Sam Bond-Taylor and Kenza Bouzid and Valentina Salvatelli and Maximilian Ilse and Shruthi Bannur and Daniel C. Castro and Anton Schwaighofer and Matthew P. Lungren and Maria Wetscherek and Noel Codella and Stephanie L. Hyland and Javier Alvarez-Valle and Ozan Oktay},
year={2024},
eprint={2401.10815},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
APA:
Pérez-García, F., Sharma, H., Bond-Taylor, S., Bouzid, K., Salvatelli, V., Ilse, M., Bannur, S., Castro, D.C., Schwaighofer, A., Lungren, M.P., Wetscherek, M.T., Codella, N., Hyland, S.L., Alvarez-Valle, J., & Oktay, O. (2024).
RAD-DINO: Exploring Scalable Medical Image Encoders Beyond Text Supervision
. ArXiv, abs/2401.10815.
rad-dino huggingface.co is an AI model on huggingface.co that provides rad-dino's model effect (), which can be used instantly with this microsoft rad-dino model. huggingface.co supports a free trial of the rad-dino model, and also provides paid use of the rad-dino. Support call rad-dino model through api, including Node.js, Python, http.
rad-dino huggingface.co is an online trial and call api platform, which integrates rad-dino's modeling effects, including api services, and provides a free online trial of rad-dino, you can try rad-dino online for free by clicking the link below.
microsoft rad-dino online free url in huggingface.co:
rad-dino is an open source model from GitHub that offers a free installation service, and any user can find rad-dino on GitHub to install. At the same time, huggingface.co provides the effect of rad-dino install, users can directly use rad-dino installed effect in huggingface.co for debugging and trial. It also supports api for free installation.