AI SeedbankHelp preserve open and free AI for humanity's future

← All models

facebook_dinov2-giant

facebook · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 tags:

  • dino
  • vision

Vision Transformer (giant-sized model) trained using DINOv2

Vision Transformer (ViT) model trained using the DINOv2 method. It was introduced in the paper DINOv2: Learning Robust Visual Features without Supervision by Oquab et al. and first released in this repository.

Disclaimer: The team releasing DINOv2 did not write a model card for this model so this model card has been written by the Hugging Face team.

Model description

The Vision Transformer (ViT) is a transformer encoder model (BERT-like) pretrained on a large collection of images in a self-supervised fashion.

Images are presented to the model as a sequence of fixed-size patches, which are linearly embedded. One also adds a [CLS] token to the beginning of a sequence to use it for classification tasks. One also adds absolute position embeddings before feeding the sequence to the layers of the Transformer encoder.

Note that this model does not include any fine-tuned heads.

By pre-training the model, it learns an inner representation of images that can then be used to extract features useful for downstream tasks: if you have a dataset of labeled images for instance, you can train a standard classifier by placing a linear layer on top of the pre-trained encoder. One typically places a linear layer on top of the [CLS] token, as the last hidden state of this token can be seen as a representation of an entire image.

Intended uses & limitations

You can use the raw model for feature extraction. See the model hub to look for fine-tuned versions on a task that interests you.

How to use

Here is how to use this model:

from transformers import AutoImageProcessor, AutoModel
from PIL import Image
import requests

url = 'http://images.cocodataset.org/val2017/000000039769.jpg'
image = Image.open(requests.get(url, stream=True).raw)

processor = AutoImageProcessor.from_pretrained('facebook/dinov2-giant')
model = AutoModel.from_pretrained('facebook/dinov2-giant')

inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)
last_hidden_states = outputs.last_hidden_state

BibTeX entry and citation info

misc{oquab2023dinov2,
      title={DINOv2: Learning Robust Visual Features without Supervision}, 
      author={Maxime Oquab and Timothée Darcet and Théo Moutakanni and Huy Vo and Marc Szafraniec and Vasil Khalidov and Pierre Fernandez and Daniel Haziza and Francisco Massa and Alaaeldin El-Nouby and Mahmoud Assran and Nicolas Ballas and Wojciech Galuba and Russell Howes and Po-Yao Huang and Shang-Wen Li and Ishan Misra and Michael Rabbat and Vasu Sharma and Gabriel Synnaeve and Hu Xu and Hervé Jegou and Julien Mairal and Patrick Labatut and Armand Joulin and Piotr Bojanowski},
      year={2023},
      eprint={2304.07193},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:2e1ca3946462d65f66d4302ddc259a84633af07c&dn=facebook_dinov2-giant

Open magnet in torrent client · infohash 2e1ca3946462d65f66d4302ddc259a84633af07c

Files & hashes

PathSizesha1sha256
README.md3.0 KB (3,033 B)c31309adc935207373bdc847276bc085ef92a8c1129a5b66134a5739a3c35033483ca00427f497ce5052d8cf8e2446dac19eec1b
config.json548 B (548 B)5f6d78927e4738cc844e868a5150753239927ef715d2e68b709674c0eb9bb5cc8b73e57ebe9a169a425bef224f46ae10053806a2
model.safetensors4.23 GB (4,546,005,432 B)8a1b3f1ba3fe4fb670c0f1ca00384be847e8f732917d3c470db999d32a312f8542149be91c7cbac61ee8fb4b67ae3d82b79ce21f
preprocessor_config.json436 B (436 B)ff5b47c2edcd1d3556d63c01a65d93b58b9efce114e780d86fa1861f8751f868d7f45425b5feb55c38ca26f152ca5097ab30f828
pytorch_model.bin4.23 GB (4,546,157,037 B)07fcc99415fd538e62844e82e71c71e1c549d73255755116234d40720deebc04dcf8b8c146e0e7dd5aace4a413eb203604c44762

Cite this release

Canonical URL
https://aiseedbank.org/models/facebook_dinov2-giant/
Slug
facebook_dinov2-giant
Infohash
2e1ca3946462d65f66d4302ddc259a84633af07c
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: facebook_dinov2-giant.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryfacebook/dinov2-giant
Revision (pinned)611a9d42f2335e0f921f1e313ad3c1b7178d206d
Fetched at2026-09-03T22:30:55Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T22:33:53Z

apache-2.08.47 GB (9,092,166,486 bytes)transformerspytorchsafetensorsdinov2image-feature-extractiondinovisionendpoints_compatiblepaper: 2304.07193