Views
No views yet


1from huggingface_hub import hf_hub_download
2
3# Finetuned Weights
4
5# The filename "swin_arcface_webface4m_tinyface" indicates that the model has a swin bakcbone and pretraind
6# on webface4m dataset with arcface loss function and finetuned on tinyface.
7hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_arcface_webface4m_tinyface/model.pt", local_dir="./weights")
8hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_cosface_webface4m_tinyface/model.pt", local_dir="./weights")
9hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_cosface_webface4m_briar/model.pt", local_dir="./weights")
10hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_cosface_webface12m_briar/model.pt", local_dir="./weights")
11
12# Pre-trained Weights
13hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_arcface_webface4m/model.pt", local_dir="./weights")
14hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_cosface_webface4m/model.pt", local_dir="./weights")
15hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_arcface_webface12m/model.pt", local_dir="./weights")
16hf_hub_download(repo_id="kartiknarayan/PETALface", filename="swin_cosface_webface12m/model.pt", local_dir="./weights")1@inproceedings{narayan2025petalface,
2 title={Petalface: Parameter efficient transfer learning for low-resolution face recognition},
3 author={Narayan, Kartik and Nair, Nithin Gopalakrishnan and Xu, Jennifer and Chellappa, Rama and Patel, Vishal M},
4 booktitle={2025 IEEE/CVF Winter Conference on Applications of Computer Vision (WACV)},
5 pages={804--814},
6 year={2025},
7 organization={IEEE}
8}