tensorflow
MD2017
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
tensorflow语法
tf.cond() # if tf.while_loop() # while tf.tile() # multipy tf.gather() # 矩阵拼接 a : [16, 256] b: [16, 256] c = tf.stack([a, b], 1) c: [16, 2, 256] d= tf.concat([a, b], 1) d:[16, 512] ...原创 2018-07-25 10:33:07 · 356 阅读 · 0 评论 -
resnet、faster-rcnn、binary net、one shot learning等等算法学习笔记
文档及代码地址在个人github上:(https://github.com/duanyzhi) Blog:https://duanyzhi.github.io/ 仅供学习,发现错误还请留言指出 深度学习算法整理: 1. [ResNet](https://duanyzhi.github.io/ResNet/) [code](https://github.com...原创 2018-03-14 17:17:32 · 614 阅读 · 0 评论
分享