LibreViTs-cls
Classic ViT-Small/16 image classifier (224px, ImageNet-1k, 1000 classes), repackaged for LibreYOLO. The model has 22.1 million parameters and is inference-only in LibreYOLO.
Source
Derived from timm model
vit_small_patch16_224.augreg_in21k_ft_in1k at timm v1.0.28 (commit
8ef73809f622e0031bd7f4940265734aef8b9978). The exact source checkpoint is
timm/vit_small_patch16_224.augreg_in21k_ft_in1k
at revision 7e2c55630205e1266030f18370f4c6ed1a514b52. The source and weights are
Apache-2.0. Copyright (c) Ross Wightman and the timm contributors.
The architecture originates from Google Research's Apache-2.0 Vision Transformer. These AugReg weights use ImageNet-21k pretraining followed by ImageNet-1k fine-tuning.
Modifications
Learned parameters are unchanged. Conversion adds LibreYOLO checkpoint
metadata (model_family, size, task, nc, names, and imgsz) only.
LibreYOLO's native graph loads the state dict strictly and produces exactly
the same pretrained logits as timm (max_abs_diff == 0). See
weights/convert_vit_weights.py and docs/provenance/vit.md in the
LibreYOLO source repository.
Source model.safetensors SHA-256:
79c03c635cdfd798a364a9d8c4e5c0b7255b975ea2c9616046d4f77ab01435aa.
Usage
from libreyolo import LibreYOLO
model = LibreYOLO("LibreViTs-cls.pt")
result = model.predict("image.jpg")
print(result.probs.top1, result.probs.top5)