Pytorch InsightFace
将来自预训练的ResNet模型移植到pytorch。
模型
LFW(%)
CFP-FP(%)
AgeDB-30(%)
MegaFace(%)
iresnet34
99.65
92.12
97.70
96.70
iresnet50
99.80
92.74
97.76
97.64
iresnet100
99.77
98.27
98.28
98.47
安装
pip install git+https://github.com/nizhib/pytorch-insightface
用法
import torch
from imageio import imread
from torchvision import transforms
import insightface
embedder = insightface
2024-04-16 16:41:15
23KB
Python
1