
tensorflow
MD2017
这个作者很懒,什么都没留下…
展开
-
tensorflow语法
tf.cond() # iftf.while_loop() # whiletf.tile() # multipytf.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 · 314 阅读 · 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 · 576 阅读 · 0 评论