facebook / dinov3-vith16plus-pretrain-lvd1689m

huggingface.co
Total runs: 79.3K
24-hour runs: -180
7-day runs: 5.0K
30-day runs: -44.1K
Model's Last Updated: Août 19 2025
image-feature-extraction

Introduction of dinov3-vith16plus-pretrain-lvd1689m

Model Details of dinov3-vith16plus-pretrain-lvd1689m

Model Card for DINOv3

DINOv3 is a family of versatile vision foundation models that outperforms the specialized state of the art across a broad range of settings, without fine-tuning. DINOv3 produces high-quality dense features that achieve outstanding performance on various vision tasks, significantly surpassing previous self- and weakly-supervised foundation models.

Model Details

These are Vision Transformer and ConvNeXt models trained following the method described in the DINOv3 paper. 12 models are provided:

  • 10 models pretrained on web data (LVD-1689M dataset)
    • 1 ViT-7B trained from scratch,
    • 5 ViT-S/S+/B/L/H+ models distilled from the ViT-7B,
    • 4 ConvNeXt-{T/S/B/L} models distilled from the ViT-7B,
  • 2 models pretrained on satellite data (SAT-493M dataset)
    • 1 ViT-7B trained from scratch
    • 1 ViT-L distilled from the ViT-7B

Each Transformer-based model takes an image as input and returns a class token, patch tokens (and register tokens). These models follow a ViT architecture, with a patch size of 16. For a 224x224 image, this results in 1 class token + 4 register tokens + 196 patch tokens = 201 tokens (for DINOv2 with registers this resulted in 1 + 4 + 256 = 261 tokens).

The models can accept larger images provided the image shapes are multiples of the patch size (16). If this condition is not verified, the model will crop to the closest smaller multiple of the patch size.

Model Description
  • Developed by: Meta AI
  • Model type: Vision Transformer, ConvNeXt
  • License: DINOv3 License
Model Sources
Uses

The models are vision backbones providing multi-purpose features for downstream tasks.

Direct Use

The models can be used without fine-tuning, with downstream classifiers as simple as linear layers, to obtain competitive results:

  • on image classification, using k-NN classifiers on the class token
  • on image classification, with logistic regression classifiers applied on the class token
  • on image classification, with a linear layer applied on the class token and the average of the patch tokens
  • on image retrieval using nearest neighbors
  • on geometric and semantic 3D keypoint correspondances
  • on depth estimation, semantic segmentation, using linear layers
  • on unsupervised object discovery
  • on video segmentation tracking
  • on video classification, using a small 4-layer attentive probe
Downstream Use

While fine-tuning the models can yield some gains, it is recommended to keep this option as a last resort: the frozen features are expected to provide good performance out-of-the-box.

Bias, Risks, and Limitations

Compared to DINOv2 and SEERv2, DINOv3 delivers somewhat consistent performance across income categories on geographical fairness and diversity, although with a notable performance drop in the low-income bucket compared to the highest-income bucket.

DINOv3 also achieves relatively good scores across different regions, improving over its predecessor DINOv2. However, a relative difference is still observed between Europe and Africa.

Recommendations

Fine-tuning is expected to increase the biases in the features produced by the model as they will be tuned to the fine-tuning labels.

How to Get Started with the Model

The example below demonstrates how to obtain an image embedding with [Pipeline] or the [AutoModel] class.

from transformers import pipeline
from transformers.image_utils import load_image

url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/pipeline-cat-chonk.jpeg"
image = load_image(url)

feature_extractor = pipeline(
    model="facebook/dinov3-vith16plus-pretrain-lvd1689m",
    task="image-feature-extraction", 
)
features = feature_extractor(image)
import torch
from transformers import AutoImageProcessor, AutoModel
from transformers.image_utils import load_image

url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = load_image(url)

pretrained_model_name = "facebook/dinov3-vith16plus-pretrain-lvd1689m"
processor = AutoImageProcessor.from_pretrained(pretrained_model_name)
model = AutoModel.from_pretrained(
    pretrained_model_name, 
    device_map="auto", 
)

inputs = processor(images=image, return_tensors="pt").to(model.device)
with torch.inference_mode():
    outputs = model(**inputs)

pooled_output = outputs.pooler_output
print("Pooled output shape:", pooled_output.shape)
Training Details
Training Data
  • Web dataset (LVD-1689M): a curated dataset of 1,689 millions of images extracted from a large data pool of 17 billions web images collected from public posts on Instagram

  • Satellite dataset (SAT-493M): a dataset of 493 millions of 512x512 images sampled randomly from Maxar RGB ortho-rectified imagery at 0.6 meter resolution

Training Procedure

Training objective:

  • DINO self-distillation loss with multi-crop

  • iBOT masked-image modeling loss

  • KoLeo regularization on [CLS] tokens

  • Gram anchoring

  • Training regime: PyTorch FSDP2 (with bf16 and fp8 matrix multiplications)

Distillation:

  • Distillation follows the standard DINOv3 pretraining procedure, except the teacher is a frozen pretrained ViT-7B.
Evaluation

Results

The reader is referred to the associated paper for details on the evaluation protocols

Results for ViT backbones pretrained (or distilled) on web (LVD-1689M)

Global Tasks Dense Tasks
Model IN-ReaL IN-R Obj.365 Ox.-H ADE20k NYU↓ DAVIS NAVI SPair
DINOv3 ViT-S/16 87.0 60.4 50.9 49.5 47.0 0.403 72.7 56.3 50.4
DINOv3 ViT-S+/16 88.0 68.8 54.6 50.0 48.8 0.399 75.5 57.1 55.2
DINOv3 ViT-B/16 89.3 76.7 64.1 58.5 51.8 0.373 77.2 58.8 57.2
DINOv3 ViT-L/16 90.2 88.1 74.8 63.1 54.9 0.352 79.9 62.3 61.3
DINOv3 ViT-H+/16 90.3 90.0 78.6 64.5 54.8 0.352 79.3 63.3 56.3
DINOv3 ViT-7B/16 90.4 91.1 91.1 72.8 60.7 55.9 0.309 64.4 58.7

Results for ConvNeXt backbones distilled on web (LVD-1689M)

Global Tasks Dense Tasks
Model IN-ReaL IN-R Obj.365 ADE20k NYU↓
@256px @512px @256px @512px @256px @512px
DINOv3 ConvNeXt Tiny 86.6 87.7 73.7 74.1 52.6 58.7 42.7 0.448
DINOv3 ConvNeXt Small 87.9 88.7 73.7 74.1 52.6 58.7 44.8 0.432
DINOv3 ConvNeXt Base 88.5 89.2 77.2 78.2 56.2 61.3 46.3 0.420
DINOv3 ConvNeXt Large 88.9 89.4 81.3 82.4 59.3 65.2 47.8 0.403

Results for ViT backbones pretrained (or distilled) on satellite (SAT-493M)

(GEO-Bench) Classification
Model m-BEnet m-brick-kiln m-eurosat m-forestnet m-pv4ger m-so2sat mean
DINOv3 ViT-L/16 73.0 96.5 94.1 60.6 96.0 57.4 79.6
DINOv3 ViT-7B/16 74.0 97.2 94.8 62.3 96.1 62.1 81.1
(GEO-Bench) Segmentation
Model m-cashew m-chesapeake m-NeonTree m-nz-cattle m-pv4ger-seg m-SA-crop mean
DINOv3 ViT-L/16 94.2 75.6 61.8 83.7 95.2 36.8 74.5
DINOv3 ViT-7B/16 94.1 76.6 62.6 83.4 95.5 37.6 75.0
Environmental Impact
  • Hardware Type: Nvidia H100
  • Hours used: 61,440 hours for ViT-7B model training
  • Cloud Provider: Private infrastructure
  • Compute Region: USA
  • Carbon Emitted: 18t CO2eq
Technical Specifications
Model Architecture and Objective

Vision Transformer models:

  • ViT-S (21M parameters): patch size 16, embedding dimension 384, 4 register tokens, 6 heads, MLP FFN, RoPE
  • ViT-S+ (29M parameters): patch size 16, embedding dimension 384, 4 register tokens, 6 heads, SwiGLU FFN, RoPE
  • ViT-B (86M parameters): patch size 16, embedding dimension 768, 4 register tokens, 12 heads, MLP FFN, RoPE
  • ViT-L (300M parameters): patch size 16, embedding dimension 1024, 4 register tokens, 16 heads, MLP FFN, RoPE
  • ViT-H+ (840M parameters): patch size 16, embedding dimension 1280, 4 register tokens, 20 heads, SwiGLU FFN, RoPE
  • ViT-7B (6716M parameters): patch size 16, embedding dimension 4096, 4 register tokens, 32 heads, SwiGLU FFN, RoPE

ConvNeXt models:

  • ConvNeXt Tiny (29M parameters)
  • ConvNeXt Small (50M parameters)
  • ConvNeXt Base (89M parameters)
  • ConvNeXt Large (198M parameters)
Compute Infrastructure
Hardware

Nvidia H100 GPUs

Software

PyTorch 2.7

More Information

See the blog post and the associated website .

Citation

BibTeX

@article{simeoni2025dinov3,
  title = {{{DINOv3}}},
  author = {Sim{\'e}oni, Oriane and Vo, Huy V. and Seitzer, Maximilian and Baldassarre, Federico and Oquab, Maxime and Jose, Cijo and Khalidov, Vasil and Szafraniec, Marc and Yi, Seungeun and Ramamonjisoa, Micha{\"e}l and Massa, Francisco and Haziza, Daniel and Wehrstedt, Luca and Wang, Jianyuan and Darcet, Timoth{\'e}e and Moutakanni, Th{\'e}o and Sentana, Leonel and Roberts, Claire and Vedaldi, Andrea and Tolan, Jamie and Brandt, John and Couprie, Camille and Mairal, Julien and J{\'e}gou, Herv{\'e} and Labatut, Patrick and Bojanowski, Piotr},
  year = {2025},
  month = aug,
  url={https://ai.meta.com/research/publications/dinov3},
  urldate = {2025-08-13},
}

Runs of facebook dinov3-vith16plus-pretrain-lvd1689m on huggingface.co

79.3K
Total runs
-180
24-hour runs
2.0K
3-day runs
5.0K
7-day runs
-44.1K
30-day runs

More Information About dinov3-vith16plus-pretrain-lvd1689m huggingface.co Model

More dinov3-vith16plus-pretrain-lvd1689m license Visit here:

https://choosealicense.com/licenses/dinov3-license

dinov3-vith16plus-pretrain-lvd1689m huggingface.co

dinov3-vith16plus-pretrain-lvd1689m huggingface.co is an AI model on huggingface.co that provides dinov3-vith16plus-pretrain-lvd1689m's model effect (), which can be used instantly with this facebook dinov3-vith16plus-pretrain-lvd1689m model. huggingface.co supports a free trial of the dinov3-vith16plus-pretrain-lvd1689m model, and also provides paid use of the dinov3-vith16plus-pretrain-lvd1689m. Support call dinov3-vith16plus-pretrain-lvd1689m model through api, including Node.js, Python, http.

dinov3-vith16plus-pretrain-lvd1689m huggingface.co Url

https://huggingface.co/facebook/dinov3-vith16plus-pretrain-lvd1689m

facebook dinov3-vith16plus-pretrain-lvd1689m online free

dinov3-vith16plus-pretrain-lvd1689m huggingface.co is an online trial and call api platform, which integrates dinov3-vith16plus-pretrain-lvd1689m's modeling effects, including api services, and provides a free online trial of dinov3-vith16plus-pretrain-lvd1689m, you can try dinov3-vith16plus-pretrain-lvd1689m online for free by clicking the link below.

facebook dinov3-vith16plus-pretrain-lvd1689m online free url in huggingface.co:

https://huggingface.co/facebook/dinov3-vith16plus-pretrain-lvd1689m

dinov3-vith16plus-pretrain-lvd1689m install

dinov3-vith16plus-pretrain-lvd1689m is an open source model from GitHub that offers a free installation service, and any user can find dinov3-vith16plus-pretrain-lvd1689m on GitHub to install. At the same time, huggingface.co provides the effect of dinov3-vith16plus-pretrain-lvd1689m install, users can directly use dinov3-vith16plus-pretrain-lvd1689m installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

dinov3-vith16plus-pretrain-lvd1689m install url in huggingface.co:

https://huggingface.co/facebook/dinov3-vith16plus-pretrain-lvd1689m

Url of dinov3-vith16plus-pretrain-lvd1689m

dinov3-vith16plus-pretrain-lvd1689m huggingface.co Url

Provider of dinov3-vith16plus-pretrain-lvd1689m huggingface.co

facebook
ORGANIZATIONS

Other API from facebook

huggingface.co

Total runs: 8.3M
Run Growth: -9.2M
Growth Rate: -111.13%
Updated:Septembre 15 2023
huggingface.co

Total runs: 8.0M
Run Growth: 217.5K
Growth Rate: 2.71%
Updated:Janvier 20 2022
huggingface.co

Total runs: 4.0M
Run Growth: -405.1K
Growth Rate: -10.13%
Updated:Septembre 06 2023
huggingface.co

Total runs: 3.2M
Run Growth: 942.3K
Growth Rate: 29.09%
Updated:Janvier 17 2024
huggingface.co

Total runs: 2.8M
Run Growth: -506.9K
Growth Rate: -18.19%
Updated:Décembre 28 2021
huggingface.co

Total runs: 2.3M
Run Growth: 728.0K
Growth Rate: 31.65%
Updated:Janvier 25 2024
huggingface.co

Total runs: 2.1M
Run Growth: 94.9K
Growth Rate: 4.55%
Updated:Mars 23 2023
huggingface.co

Total runs: 1.9M
Run Growth: 40.7K
Growth Rate: 2.04%
Updated:Novembre 21 2025
huggingface.co

Total runs: 696.7K
Run Growth: -252.3K
Growth Rate: -36.21%
Updated:Septembre 06 2023
huggingface.co

Total runs: 483.5K
Run Growth: -125.6K
Growth Rate: -25.98%
Updated:Mai 22 2023
huggingface.co

Total runs: 441.6K
Run Growth: 78.7K
Growth Rate: 17.83%
Updated:Février 29 2024
huggingface.co

Total runs: 429.4K
Run Growth: -69.0K
Growth Rate: -16.06%
Updated:Mars 17 2025
huggingface.co

Total runs: 416.2K
Run Growth: -153.5K
Growth Rate: -36.87%
Updated:Janvier 12 2024
huggingface.co

Total runs: 358.3K
Run Growth: -52.4K
Growth Rate: -14.64%
Updated:Janvier 12 2024
huggingface.co

Total runs: 313.7K
Run Growth: 38.3K
Growth Rate: 12.20%
Updated:Septembre 15 2023
huggingface.co

Total runs: 308.9K
Run Growth: 27.1K
Growth Rate: 8.78%
Updated:Novembre 17 2022
huggingface.co

Total runs: 308.8K
Run Growth: -49.4K
Growth Rate: -16.00%
Updated:Septembre 06 2023
huggingface.co

Total runs: 284.1K
Run Growth: 70.9K
Growth Rate: 24.97%
Updated:Juin 15 2023
huggingface.co

Total runs: 263.4K
Run Growth: 141.8K
Growth Rate: 53.84%
Updated:Mai 22 2023
huggingface.co

Total runs: 236.9K
Run Growth: 14.3K
Growth Rate: 6.02%
Updated:Juillet 23 2024
huggingface.co

Total runs: 218.6K
Run Growth: -152.2K
Growth Rate: -69.64%
Updated:Juillet 25 2023
huggingface.co

Total runs: 190.3K
Run Growth: 99.7K
Growth Rate: 52.41%
Updated:Février 12 2023
huggingface.co

Total runs: 176.5K
Run Growth: 73.0K
Growth Rate: 41.37%
Updated:Septembre 06 2023
huggingface.co

Total runs: 173.6K
Run Growth: -227.7K
Growth Rate: -131.11%
Updated:Novembre 17 2023
huggingface.co

Total runs: 163.1K
Run Growth: 2.8K
Growth Rate: 1.69%
Updated:Septembre 01 2023
huggingface.co

Total runs: 149.2K
Run Growth: 122.6K
Growth Rate: 82.19%
Updated:Novembre 16 2023
huggingface.co

Total runs: 125.6K
Run Growth: 3.5K
Growth Rate: 2.82%
Updated:Juin 03 2022
huggingface.co

Total runs: 111.8K
Run Growth: -5.5K
Growth Rate: -4.91%
Updated:Septembre 15 2023
huggingface.co

Total runs: 110.9K
Run Growth: 25.8K
Growth Rate: 23.30%
Updated:Novembre 20 2023
huggingface.co

Total runs: 110.1K
Run Growth: 25.2K
Growth Rate: 22.90%
Updated:Janvier 25 2023
huggingface.co

Total runs: 102.3K
Run Growth: 22.0K
Growth Rate: 21.53%
Updated:Juillet 02 2024
huggingface.co

Total runs: 96.6K
Run Growth: -228.3K
Growth Rate: -236.40%
Updated:Juin 13 2023
huggingface.co

Total runs: 84.3K
Run Growth: 60.3K
Growth Rate: 71.50%
Updated:Février 12 2023
huggingface.co

Total runs: 60.1K
Run Growth: -13.7K
Growth Rate: -22.87%
Updated:Mars 28 2026
huggingface.co

Total runs: 59.0K
Run Growth: 15.8K
Growth Rate: 26.69%
Updated:Janvier 25 2023
huggingface.co

Total runs: 57.4K
Run Growth: 12.9K
Growth Rate: 22.43%
Updated:Juin 13 2023
huggingface.co

Total runs: 55.2K
Run Growth: -14.7K
Growth Rate: -26.55%
Updated:Janvier 29 2026