1 Star 0 Fork 0

yanghui / facebook_dinov2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MODEL_CARD.md 8.94 KB
一键复制 编辑 原始数据 按行查看 历史

Model Card for DINOv2-S/B/L/g

These are Vision Transformer models trained following the method described in the papers: "DINOv2: Learning Robust Visual Features without Supervision" and "Vision Transformers Need Registers".

We provide 8 models:

  • 1 ViT-g trained from scratch with 3 ViT-S/B/L models distilled from the ViT-g, without registers.
  • 1 ViT-g trained from scratch with 3 ViT-S/B/L models distilled from the ViT-g, with registers.

Model Details

The model takes an image as input and returns a class token and patch tokens, and optionally 4 register tokens.

The embedding dimension is:

  • 384 for ViT-S.
  • 768 for ViT-B.
  • 1024 for ViT-L.
  • 1536 for ViT-g.

The models follow a Transformer architecture, with a patch size of 14. In the case of registers, we add 4 register tokens, learned during training, to the input sequence after the patch embedding.

For a 224x224 image, this results in 1 class token + 256 patch tokens, and optionally 4 register tokens.

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

Model Description

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 depth estimation, semantic segmentation, using linear layers.
  • 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.

Downstream Use

It is technically possible to perform fine-tuning on the models, for small gains (we measured +2% on ImageNet-1k classification). We recommend keeping this as a very last step and only when necessary, as the features already provide good performance out-of-the-box.

Bias, Risks, and Limitations

Despite improvements thanks to the training method not using annotations, we still observe significant biases in our models toward rich households from Western countries.

Recommendations

We expect fine-tuning will 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

Use the code below to get started with the model.

import torch

# DINOv2
dinov2_vits14 = torch.hub.load('facebookresearch/dinov2', 'dinov2_vits14')
dinov2_vitb14 = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitb14')
dinov2_vitl14 = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitl14')
dinov2_vitg14 = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitg14')

# DINOv2 with registers
dinov2_vits14_reg = torch.hub.load('facebookresearch/dinov2', 'dinov2_vits14_reg')
dinov2_vitb14_reg = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitb14_reg')
dinov2_vitl14_reg = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitl14_reg')
dinov2_vitg14_reg = torch.hub.load('facebookresearch/dinov2', 'dinov2_vitg14_reg')

Training Details

Training Data

  • Training data: LVD-142M (see paper)
  • Training regime: fp16 using PyTorch-FSDP mixed-precision.

Training Procedure

  • Training objective:
    • DINO self-distillation loss with multi-crop
    • iBOT masked-image modeling loss
    • KoLeo regularization on [CLS] tokens
  • Architectures:
    • ViT-S (21M params): Patch size 14, embedding dimension 384, 6 heads, MLP FFN
    • ViT-B (86M params): Patch size 14, embedding dimension 768, 12 heads, MLP FFN
    • ViT-L (0.3B params): Patch size 14, embedding dimension 1024, 16 heads, MLP FFN
    • ViT-g (1.1B params): Patch size 14, embedding dimension 1536, 24 heads, SwiGLU FFN
  • Distillation:
    • Distillation follows the standard DINOv2 pretraining procedure, except the teacher is a pretrained ViT-g, frozen.

Evaluation

We refer users to the associated papers for the evaluation protocols.

ImageNet-1k NYU-Depth v2 SUN-RGBD ADE20k iNaturalist 2018 Oxford-H
model with
registers
classif. (acc) classif. (acc) classif. V2 (acc) depth (RMSE) depth (RMSE) segm. (mAP) classif. (acc) retrieval (mAP)
k-NN linear linear linear
4 layers
NYU-D transfer multiscale linear nearest neighbor
ViT-S/14 :x: 79.0% 81.1% 70.8% 0.417 0.431 47.2 69.5% 43.2
ViT-S/14 :white_check_mark: 79.1% 80.9% 71.0% N/A N/A N/A 67.6% 39.5
ViT-B/14 :x: 82.1% 84.5% 74.9% 0.362 0.400 51.3 76.3% 49.5
ViT-B/14 :white_check_mark: 82.0% 84.6% 75.6% N/A N/A N/A 73.8% 51.0
ViT-L/14 :x: 83.5% 86.3% 77.6% 0.333 0.396 53.1 79.8% 54.0
ViT-L/14 :white_check_mark: 83.8% 86.7% 78.5% N/A N/A N/A 80.9% 55.7
ViT-g/14 :x: 83.5% 86.5% 78.4% 0.298 0.362 53.0 81.6% 52.3
ViT-g/14 :white_check_mark: 83.7% 87.1% 78.8% N/A N/A N/A 81.5% 58.2

Environmental Impact

  • Hardware Type: Nvidia A100
  • Hours used: 22,000 for ViT-g, 4,500 for ViT-S distillation, 5,300 for ViT-B distillation, 8,000 for ViT-L distillation
  • Cloud Provider: Private infra
  • Compute Region: USA
  • Carbon Emitted: 7t CO2eq

Hardware

Nvidia A100 GPUs

Software

PyTorch 2.0, xFormers 0.0.18

BibTeX

@misc{oquab2023dinov2,
  title={DINOv2: Learning Robust Visual Features without Supervision},
  author={Oquab, Maxime and Darcet, Timothée and Moutakanni, Theo and Vo, Huy and Szafraniec, Marc and Khalidov, Vasil and Fernandez, Pierre and Haziza, Daniel and Massa, Francisco and El-Nouby, Alaaeldin and Howes, Russell and Huang, Po-Yao and Xu, Hu and Sharma, Vasu and Li, Shang-Wen and Galuba, Wojciech and Rabbat, Mike and Assran, Mido and Ballas, Nicolas and Synnaeve, Gabriel and Misra, Ishan and Jegou, Herve and Mairal, Julien and Labatut, Patrick and Joulin, Armand and Bojanowski, Piotr},
  journal={arXiv:2304.07193},
  year={2023}
}
@misc{darcet2023vitneedreg,
  title={Vision Transformers Need Registers},
  author={Darcet, Timothée and Oquab, Maxime and Mairal, Julien and Bojanowski, Piotr},
  journal={arXiv:2309.16588},
  year={2023}
}
1
https://gitee.com/feiy/facebook_dinov2.git
git@gitee.com:feiy/facebook_dinov2.git
feiy
facebook_dinov2
facebook_dinov2
main

搜索帮助