dlib 使用dlib_face_recognition_resnet_model_v1模型应该用哪个 net_type
时间: 2023-08-08 07:13:19 浏览: 325
dlib人脸识别模型
5星 · 资源好评率100%
dlib_face_recognition_resnet_model_v1 是一个基于 ResNet-34 模型架构的人脸识别模型。在 dlib 中,我们可以使用不同的 `net_type` 参数来定义不同的 ResNet 架构。在使用 dlib_face_recognition_resnet_model_v1 模型时,建议使用 `net_type = "resnet34"`,这与该模型的架构相对应。例如:
```
import dlib
# 加载人脸识别模型
facerec = dlib.face_recognition_model_v1("dlib_face_recognition_resnet_model_v1.dat")
# 加载 ResNet-34 模型
net = dlib.resnet34()
# 训练人脸识别模型
facerec.train(人脸图像列表, 标签列表, net)
```
阅读全文