microsoft
rad-dino
Model provider
microsoft
Model tree
Base
this model
Modalities
Input
-
Output
-
Pricing
Dedicated Endpoints
View detailsSupported Functionality
Model APIs
Dedicated Endpoints
Container
More information
GLM-5.2 is live. #1 throughput on OpenRouter, pay-per-token on FriendliAI. Try it today ➜
microsoft
Model provider
microsoft
Model tree
Base
this model
Modalities
Input
-
Output
-
Pricing
Dedicated Endpoints
View detailsSupported Functionality
Model APIs
Dedicated Endpoints
Container
More information
RAD-DINO is described in detail in Exploring Scalable Medical Image Encoders Beyond Text Supervision (F. Pérez-García, H. Sharma, S. Bond-Taylor, et al., 2025).
dinov2-baseRAD-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:
CLS tokenFine-tuning RAD-DINO is typically not necessary to obtain good performance in downstream tasks.
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.
shell
pip install rad-dino
python
>>> from rad_dino import RadDino>>> from rad_dino.utils import download_sample_image>>> encoder = RadDino()>>> image = download_sample_image()>>> image<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2765x2505 at 0x7CCD5C014050>>>> cls_embeddings, patch_embeddings = encoder.extract_features(image)>>> cls_embeddings.shape, patch_embeddings.shape(torch.Size([1, 768]), torch.Size([1, 768, 37, 37]))
We have released a checkpoint compatible with the original DINOv2 code to help researchers fine-tune our model.
We can use the hub model and load the RAD-DINO weights. Let's clone the DINOv2 repository so we can import the code for the head.
shell
git clone https://github.com/facebookresearch/dinov2.git
python
>>> import torch>>> from rad_dino.utils import safetensors_to_state_dict>>> rad_dino_gh = torch.hub.load("./dinov2", "dinov2_vitb14")>>> backbone_state_dict = safetensors_to_state_dict("backbone_compatible.safetensors")>>> rad_dino_gh.load_state_dict(backbone_state_dict, strict=True)<All keys matched successfully>
The weights of the head are also released:
python
>>> from dinov2.layers import DINOHead>>> rad_dino_head_gh = DINOHead(... in_dim=768,... out_dim=65536,... hidden_dim=2048,... bottleneck_dim=256,... nlayers=3,... )>>> head_state_dict = safetensors_to_state_dict("dino_head.safetensors")>>> rad_dino_head_gh.load_state_dict(head_state_dict, strict=True)<All keys matched successfully>
The configuration files ssl_default_config.yaml and vitb14_cxr.yaml, and the augmentations module are also available in the repository to help researchers reproduce the training procedure with our hyperparameters.
We used images from five public, deidentified chest X-ray datasets to train this checkpoint of RAD-DINO.
| Dataset | Num. images |
|---|---|
| MIMIC-CXR | 368 960 |
| CheXpert | 223 648 |
| NIH-CXR | 112 120 |
| PadChest | 136 787 |
| BRAX |
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.
We refer to the manuscript for a detailed description of the training procedure.
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.
Our evaluation is best described in the manuscript.
RAD-DINO was trained on Azure Machine Learning.
We used 16 Standard_NC96ads_A100_v4 nodes with four NVIDIA A100 (80 GB) GPUs each.
We leveraged the code in DINOv2 for training. We used SimpleITK and Pydicom for processing of DICOM files.
BibTeX:
bibtex
@article{perez-garcia_exploring_2025,title = {Exploring scalable medical image encoders beyond text supervision},issn = {2522-5839},url = {https://doi.org/10.1038/s42256-024-00965-w},doi = {10.1038/s42256-024-00965-w},journal = {Nature Machine Intelligence},author = {P{\'e}rez-Garc{\'i}a, Fernando and Sharma, Harshita and Bond-Taylor, Sam and Bouzid, Kenza and Salvatelli, Valentina and Ilse, Maximilian and Bannur, Shruthi and Castro, Daniel C. and Schwaighofer, Anton and Lungren, Matthew P. and Wetscherek, Maria Teodora and Codella, Noel and Hyland, Stephanie L. and Alvarez-Valle, Javier and Oktay, Ozan},month = jan,year = {2025},}
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. (2025). Exploring scalable medical image encoders beyond text supervision. In Nature Machine Intelligence. Springer Science and Business Media LLC. https://doi.org/10.1038/s42256-024-00965-w
Fernando Pérez-García (fperezgarcia@microsoft.com).
| 41 260 |
| TOTAL | 882 775 |