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

← All models

timm_vit_large_patch14_dinov2.lvd142m

timm · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

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 library_name: timm tags:

  • image-feature-extraction
  • timm
  • transformers

Model card for vit_large_patch14_dinov2.lvd142m

A Vision Transformer (ViT) image feature model. Pretrained on LVD-142M with self-supervised DINOv2 method.

Model Details

  • Model Type: Image classification / feature backbone
  • Model Stats:
    • Params (M): 304.4
    • GMACs: 507.1
    • Activations (M): 1058.8
    • Image size: 518 x 518
  • Papers:
    • DINOv2: Learning Robust Visual Features without Supervision: https://arxiv.org/abs/2304.07193
    • An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale: https://arxiv.org/abs/2010.11929v2
  • Original: https://github.com/facebookresearch/dinov2
  • Pretrain Dataset: LVD-142M

Model Usage

Image Classification

from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model('vit_large_patch14_dinov2.lvd142m', pretrained=True)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # unsqueeze single image into batch of 1

top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)

Image Embeddings

from urllib.request import urlopen
from PIL import Image
import timm

img = Image.open(urlopen(
    'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))

model = timm.create_model(
    'vit_large_patch14_dinov2.lvd142m',
    pretrained=True,
    num_classes=0,  # remove classifier nn.Linear
)
model = model.eval()

# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)

output = model(transforms(img).unsqueeze(0))  # output is (batch_size, num_features) shaped tensor

# or equivalently (without needing to set num_classes=0)

output = model.forward_features(transforms(img).unsqueeze(0))
# output is unpooled, a (1, 1370, 1024) shaped tensor

output = model.forward_head(output, pre_logits=True)
# output is a (1, num_features) shaped tensor

Model Comparison

Explore the dataset and runtime metrics of this model in timm model results.

Citation

@misc{oquab2023dinov2,
  title={DINOv2: Learning Robust Visual Features without Supervision},
  author={Oquab, Maxime and Darcet, Timothée and Moutakanni, Theo and Vo, Huy V. 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}
}
@article{dosovitskiy2020vit,
  title={An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale},
  author={Dosovitskiy, Alexey and Beyer, Lucas and Kolesnikov, Alexander and Weissenborn, Dirk and Zhai, Xiaohua and Unterthiner, Thomas and  Dehghani, Mostafa and Minderer, Matthias and Heigold, Georg and Gelly, Sylvain and Uszkoreit, Jakob and Houlsby, Neil},
  journal={ICLR},
  year={2021}
}
@misc{rw2019timm,
  author = {Ross Wightman},
  title = {PyTorch Image Models},
  year = {2019},
  publisher = {GitHub},
  journal = {GitHub repository},
  doi = {10.5281/zenodo.4414861},
  howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
}

Magnet link

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

magnet:?xt=urn:btih:e79952c56ffc3b9d1e1552f5d7209391ff3134db&dn=timm_vit_large_patch14_dinov2.lvd142m

Open magnet in torrent client · infohash e79952c56ffc3b9d1e1552f5d7209391ff3134db

Files & hashes

PathSizesha1sha256
README.md3.9 KB (4,011 B)3d5aa95f716077ea691039ff9338145c63a27ca67d167e75eb199a5e925a7667c1268d536945f32137b47d9b35241a6c7c647d14
config.json616 B (616 B)5873223cd12446cc5371ecb58a6df8b028df877af95b0f718b06aa4c6394afe93840f04e445bf5909f0b021aecbe23f6a55954df
model.safetensors1.13 GB (1,217,502,758 B)42069aed999910d43079710ac7c0bea572f175040424a5d1b515278cba3c6640ccbeaacc41de59d3a93df0dd5e494285eea2b355
pytorch_model.bin1.13 GB (1,217,595,109 B)4fdc0a5c038a694dccae6a6e3b39d223bce8ed5a96413a203d0d00d673ae8de0a28959ae42f280106fa047b399fe9233fd31855c

Cite this release

Canonical URL
https://aiseedbank.org/models/timm_vit_large_patch14_dinov2.lvd142m/
Slug
timm_vit_large_patch14_dinov2.lvd142m
Infohash
e79952c56ffc3b9d1e1552f5d7209391ff3134db
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

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

Provenance

Upstream repositorytimm/vit_large_patch14_dinov2.lvd142m
Revision (pinned)4741e1cafbf45415e77074bb0cb42dba76c8684a
Fetched at2026-09-02T04:52:07Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:52:32Z

apache-2.02.27 GB (2,435,102,494 bytes)timmpytorchsafetensorsimage-feature-extractiontransformerspaper: 2304.07193paper: 2010.11929