官方资源
- 官方网站 https://tensorflow.org 非翻墙神器不能访问也(关键是我用了翻墙神器也没能访问)
- 伪官方网站 https://tensorflow.google.cn/ 墙内的人可以查阅的资料
- github https://github.com/tensorflow/tensorflow
- 官方提供的models以及tutorial https://github.com/tensorflow/models
学习资源汇总
- TensorFlow-Slim API 官方教程
- 李宏毅视频教程 http://speech.ee.ntu.edu.tw/~tlkagk/courses.html
经典模型TensorFlow实现汇总
- Single Shot MultiBox Detector in TensorFlow SSD目标检测TensorFlow版, SSD-tensorflow源码详解
个人知识点总结
关于TensorFlow的contrib里面的模块在IDE(IDEA、pycharm)中不能自动补全的问题
slim = tf.contrib.slim # 好多开源的模型中都这么写
# 改成如下的方式,那么自动补全,参数提示不是问题
import tf.contrib.slim as slim