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

← All models

timm_vit_base_patch14_reg4_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_base_patch14_reg4_dinov2.lvd142m

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

Model Details

  • Model Type: Image classification / feature backbone
  • Model Stats:
    • Params (M): 86.6
    • GMACs: 117.5
    • Activations (M): 115.0
    • Image size: 518 x 518
  • Papers:
    • Vision Transformers Need Registers: https://arxiv.org/abs/2309.16588
    • 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_base_patch14_reg4_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_base_patch14_reg4_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, 1374, 768) 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

@article{darcet2023vision,
  title={Vision Transformers Need Registers},
  author={Darcet, Timoth{'e}e and Oquab, Maxime and Mairal, Julien and Bojanowski, Piotr},
  journal={arXiv preprint arXiv:2309.16588},
  year={2023}
}
@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:0adf43f710bbf5f125e1859f8c5f367a5091c0e9&dn=timm_vit_base_patch14_reg4_dinov2.lvd142m

Open magnet in torrent client · infohash 0adf43f710bbf5f125e1859f8c5f367a5091c0e9

Files & hashes

PathSizesha1sha256
README.md4.2 KB (4,347 B)6cc34cc04e44228859736ff1a822882c09c1f02521cc62b20fe1b2afb3ceb9f5fe977d6034f1d788ac2552845ecf490f4bba38d6
config.json617 B (617 B)b68f57f2afc7f29e30a4483b1379f56faf63d94ee97f09e4eb07acb8218beca463c2f08f240e74a3a623da4a1b9f96e0e8ec4a92
model.safetensors330.3 MB (346,344,168 B)6a72c5c78d9c9013cf7a8dd0f756a287283f2727c24ecfb4a1d8ca79193f6b9efcffc461872a09ddac43a0931357e4802931a006
pytorch_model.bin330.3 MB (346,391,878 B)5be2e07450cf0d9c25fd4c5e506a30e7b2e3efcbb627fcb1ba108b9a50a0ada611d423d88f0cad650f985de972604a3f6f00c597

Cite this release

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

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

Provenance

Upstream repositorytimm/vit_base_patch14_reg4_dinov2.lvd142m
Revision (pinned)3b06466a5548c52b8b98822e1390987695fcbf82
Fetched at2026-09-02T04:50:10Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:50:18Z

apache-2.0660.6 MB (692,741,010 bytes)timmpytorchsafetensorsimage-feature-extractiontransformerspaper: 2309.16588paper: 2304.07193paper: 2010.11929