pet-recognition-small
Individual pet re-identification embeddings (dogs and cats) β the "which pet is this" layer used by Gallery's pet recognition, on top of whole-animal crops from its pet detector.
A frozen facebook/dinov2-small backbone (22M
parameters) plus a trained linear projection to 512 dimensions. The projection's
L2-normalized output is the embedding; identity is compared with cosine similarity.
Fine-tuning the backbone was tried and rejected β it overfits the training identities and
forgets DINOv2's general features, while the frozen-backbone projection beats zeroshot on
both species.
I/O contract
| Input | input, float32 [N, 3, 224, 224], RGB, ImageNet mean/std normalized |
| Output | embedding, float32 [N, 512], L2-normalized |
| Batch | dynamic |
| Opset | 17 |
Crop the detected animal's bounding box, resize to 224x224, normalize with ImageNet
statistics (mean [0.485, 0.456, 0.406], std [0.229, 0.224, 0.225]). Compare embeddings
with cosine similarity (equivalently, dot product β the outputs are unit vectors).
Quality
Verification EER and identification Top-1 on held-out identities β individuals never seen in training β scored over the complete test splits:
| Test set | Images | Identities | EER | Top-1 | AUC |
|---|---|---|---|---|---|
| Dogs β Dogs-World (whole animal) | 53830 | 16469 | 0.068 | 0.535 | 0.980 |
| Cats β Cat Individual Images (whole animal) | 2575 | 102 | 0.065 | 0.913 | 0.986 |
| Dogs β DogFaceNet (unseen dataset, aligned faces) | 8363 | 1393 | 0.055 | 0.899 | 0.987 |
Training data & licensing
The backbone is Apache-2.0. The projection was trained only on openly-licensed data:
- Dogs-World (CC0) β whole-animal dog photos, identity from the per-image metadata sidecars; single-dog images only.
- Cat Individual Images (CC BY) β whole-animal cat photos, one directory per cat.
DogFaceNet (CC BY) is used for evaluation only. No restrictively-licensed pet re-ID dataset (PetFace, AvitoTech, MegaDescriptor) was used for training or distillation, so this model is safe for commercial use.
Siblings
pet-recognition-small / pet-recognition-base / pet-recognition-large trade accuracy
against cost; base is Gallery's default.