Views
No views yet
| Subfolder | Model | Task | Original Source | License |
|---|---|---|---|---|
osnet-ain/ | OSNet-AIN x1.0 | Person Re-ID | torchreid (Google Drive) | MIT |
solider-swin-s/ | SOLIDER Swin-S | Person Re-ID backbone | tinyvision (Google Drive) | Apache 2.0 |
solider-swin-b/ | SOLIDER Swin-B | Person Re-ID backbone | tinyvision (Google Drive) | Apache 2.0 |
transreid-vehicle/ | TransReID ViT | Vehicle Re-ID | damo-cv (Google Drive) | MIT |
resnet50-ibn/ | ResNet50-IBN | Vehicle Re-ID backbone | torchvision (PyTorch Hub) | BSD-3 |
scrfd-2.5g/ | SCRFD-2.5GF | Face Detection | insightface (buffalo_l.zip) | MIT |
scrfd-10g/ | SCRFD-10GF | Face Detection | insightface (buffalo_l.zip) | MIT |
scrfd-34g/ | SCRFD-34GF | Face Detection | insightface (OneDrive) | MIT |
1from huggingface_hub import snapshot_download
2
3# Download a specific model subfolder
4snapshot_download(
5 repo_id='rotivrotiv/model-weights',
6 allow_patterns='solider-swin-b/**',
7 local_dir='./models/',
8)