如何使用TensorFlow提供的models训练人脸识别的网络?

Posted thgpddl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用TensorFlow提供的models训练人脸识别的网络?相关的知识,希望对你有一定的参考价值。

如何使用TensorFlow提供的models训练人脸识别的网络?

前提是我们已经有train和test的record数据格式文件

  • 修改使用的网络,使其为我所用
文件路径:models/research/object_detection/samples/configs/ssd_resnet50_v1_fpn_shared_box_predictor_640x640_coco14_sync_face.config
修改处:
 - num_class: 分类类别数,人脸识别设为1
 
 - batch_size: 我的计算能力弱,设为1 (如果有内存溢出可以设为1)
 - train的input_path: train训练集
 - train的label_map_path: label文件的训练集,位于models/research/object_detection/data/文件夹下
 - eval(=test)的input_path: test训练集
 - eval: 同train的label

以上是关于如何使用TensorFlow提供的models训练人脸识别的网络?的主要内容,如果未能解决你的问题,请参考以下文章

如何在训练 tensorflow.keras 期间替换损失函数

如何将 Cloud TPU 与 Tensorflow Lite Model Maker 结合使用?

tensorflow记录训练和验证的loss

tensorflow 如何在线训练模型

TensorFlow models - object detection API 安装

如何在 TensorFlow 对象检测 API 中从头开始训练?