jesusmolrdv/pas-i
Updated • 13
How to use jesusmolrdv/mocov3-vitb16-pas-insects with timm:
import timm
model = timm.create_model("hf_hub:jesusmolrdv/mocov3-vitb16-pas-insects", pretrained=True)MoCo-v3 ViT-B/16 backbone, self-supervised pretrained from scratch on the
PaS-I domain-specific dataset (Insects, ~1.9M images) generated by
the Precision at Scale pipeline.
Pretrained on jesusmolrdv/pas-i,
the Precision at Scale domain-specific dataset for this checkpoint.
@article{rodriguezdevera2026precision,
title = {Precision at scale: Domain-specific datasets on-demand},
author = {Rodr{\'i}guez-de-Vera, Jes{\'u}s M. and Estepa, Imanol G. and Saras{\'u}a, Ignacio and Nagarajan, Bhalaji and Radeva, Petia},
journal = {Pattern Recognition},
volume = {171},
pages = {112236},
year = {2026},
publisher = {Elsevier},
doi = {10.1016/j.patcog.2025.112236}
}
This backbone is stored in plain timm
format (vit_base_patch16_224, num_classes=0), so it loads directly
through the timm Hugging Face Hub integration:
import timm
model = timm.create_model("hf_hub:jesusmolrdv/mocov3-vitb16-pas-insects", pretrained=True)
model.eval()
model outputs 768-d backbone features (no classification head attached).