dinov3-vith16plus-torch#
DINOv3 ViT-H+/16 self-supervised image embeddings pretrained on LVD-1689M (1.7B images). Requires accepting the DINOv3 license on Hugging Face.
Details
Model name:
dinov3-vith16plus-torchModel source: https://huggingface.co/facebook/dinov3-vith16plus-pretrain-lvd1689m
Model author: Oriane Simeoni, et al.
Model license: DINOv3 License
Model size: 3.13 GB
Exposes embeddings? yes
Tags:
embeddings, torch, dinov3, transformer, official
Requirements
Packages:
torch, torchvision, transformers>=4.56CPU support
yes
GPU support
yes
Example usage
1import fiftyone as fo
2import fiftyone.zoo as foz
3
4dataset = foz.load_zoo_dataset(
5 "coco-2017",
6 split="validation",
7 dataset_name=fo.get_default_dataset_name(),
8 max_samples=50,
9 shuffle=True,
10)
11
12model = foz.load_zoo_model("dinov3-vith16plus-torch")
13
14dataset.apply_model(model, label_field="predictions")
15
16session = fo.launch_app(dataset)