tensorflow2.0学习
根据学习最全Tensorflow2.0 入门教程的路线,补充之前缺乏的基础知识。
晴晴_Amanda
这个作者很懒,什么都没留下…
展开
-
Tensorflow之单机多卡程序[1.0和2.0版本]
文章目录Tensoflow 1的 用法Tensorflow 2 的用法2.0 分布式策略:`tf.distribute.MirroredStrategy`2.1 方式1:混杂`custom training loops` 和 `keras model`2.2 方式2:纯 custom training loop方式参考Tensoflow 1的 用法在tensorflow中,变量是复用的...原创 2020-04-18 09:30:42 · 1302 阅读 · 3 评论 -
Tensorflow之维度理解[ shape、reshape]
文章目录一、shape与reshape1. shape2. reshape二、Tensor理解1. 一维张量2. 二维张量3. 三维张量4. 超过三维的多维张量三、API理解1. 关于reduce_xxx的维度问题tf.reduce_mean参考一、shape与reshape1. shape举个例子来说:import tensorflow as tfa = tf.constant([[...原创 2020-04-11 12:07:30 · 1561 阅读 · 0 评论