Views
No views yet
timm/deit_tiny_patch16_224.fb_in1k
at revision 80e968688553f219e4a86f940ed945a23709c16f. The source
model.safetensors SHA-256 is
21d4764d94f6c3ffdb6da3581115a0a1ee2d505537d96883b540e54766407c9e.
That repository declares the checkpoint under Apache License 2.0.huggingface/pytorch-image-models
commit e98c05a5a15e81188ec62dd5380b8f5c3251075a (Apache-2.0). The
original DeiT architecture is from
facebookresearch/deit commit
7e160fe43f0252d17191b71cbb5826254114ea5b (Apache-2.0).max_abs_diff == 0). See
weights/convert_deit_weights.py and docs/provenance/deit.md in the
LibreYOLO source repository.1from libreyolo import LibreYOLO
2
3model = LibreYOLO("LibreDeiTt-cls.pt") # downloads this checkpoint once
4result = model.predict("image.jpg")
5print(result.names[result.probs.top1], result.probs.top5)