
tensorflow
FK103
这个作者很懒,什么都没留下…
展开
-
tensorflow对tf.argmax()的理解
在tensorflow中,axis=1对列进行操作,axis=0对行进行操作 例如,argmax中axis=1就是对(每行中)不同列元素进行比较,得到最大值。 a = [[0, 0, 0, 1, 0, 0], [0, 0, 1, 0, 0, 0], [0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1]] # axis=1, 每行的不同列进行比较,取对应最大值...原创 2018-11-27 11:36:38 · 437 阅读 · 1 评论 -
tensorflow
tensorflow中的关键字global_step使用: https://blog.youkuaiyun.com/leviopku/article/details/78508951转载 2019-01-21 10:27:42 · 251 阅读 · 0 评论