Faster-RCNN训练篇(基础版)结合自己训练的修改过程而撰写
https://blog.youkuaiyun.com/weixin_39970417/article/details/80576252
tensorflow版本网站(cpu版本):https://blog.youkuaiyun.com/sinat_33486980/article/details/81045315
Windows 下 TensorFlow 和 Faster rcnn 详细安装步骤(二):https://blog.youkuaiyun.com/tuoyakan9097/article/details/81782257
人脸数据集:https://www.cnblogs.com/ansang/p/8137413.html
人脸数据集网站:http://mmlab.ie.cuhk.edu.hk/projects/WIDERFace/
人脸数据集制作:https://blog.youkuaiyun.com/queluying/article/details/79367464
在faster rcnn中使用soft nms,faster rcnn的改进(一):
https://blog.youkuaiyun.com/u014256231/article/details/79927079
Faster rcnn 中的nms解读:
https://blog.youkuaiyun.com/gbyy42299/article/details/80388705
slim介绍:https://www.cnblogs.com/zyly/p/9145081.html
tensorflow入门教程(二十)使用slim模型库训练自己的数据:
https://blog.youkuaiyun.com/rookie_wei/article/details/80796009
使用TensorFlow-Slim进行图像分类(官网):
https://lijiancheng0614.github.io/2017/06/29/2017_06_29_TensorFlow-Slim-image-classification/
微调:
https://www.cnblogs.com/andre-ma/p/8458172.html
https://github.com/tensorflow/models/blob/master/slim/export_inference_graph.py
https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/tools/freeze_graph.py
狗的微调:
https://blog.youkuaiyun.com/shiheyingzhe/article/details/82291199
https://blog.youkuaiyun.com/shiheyingzhe/article/details/82284853
微调视频优快云:https://edu.youkuaiyun.com/course/play/5278/95930
resnet问题网站:https://www.tensorflowers.cn/t/5612
tensorflow程序在运行时可能会用到多块显卡,所以在需要的时候可以设置:
bash
export CUDA_VISIBLE__DEVICES="0"
./run_train.sh 这时就只会使用编号为0的显卡
export CUDA_VISIBLE__DEVICES="0,1"
就会使用2块显卡