码迷,mamicode.com
首页 > 其他好文 > 详细

吴裕雄--天生自然TensorFlow2教程:Broadcasting

时间:2019-12-31 14:47:28      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:ast   code   and   adc   技术   cep   port   dom   div   

Broadcasting可以理解成把维度分成大维度和小维度,小维度较为具体,大维度更加抽象。也就是小维度针对某个示例,然后让这个示例通用语大维度。

技术图片

import tensorflow as tf

x = tf.random.normal([4,32,32,3])
x.shape
(x+tf.random.normal([3])).shape
(x+tf.random.normal([32,32,1])).shape
(x+tf.random.normal([4,1,1,1])).shape
try:
    (x+tf.random.normal([1,4,1,1])).shape
except Exception as e:
    print(e)
(x+tf.random.normal([4,1,1,1])).shape
b = tf.broadcast_to(tf.random.normal([4,1,1,1]),[4,32,32,3])
b.shape
a = tf.ones([3,4])
a.shape
a1 = tf.broadcast_to(a,[2,3,4])
a1.shape
a2 = tf.expand_dims(a,axis=0)  # 0前插入一维
a2.shape
a2 = tf.tile(a2,[2,1,1])  # 复制一维2次,复制二、三维1次
a2.shape

 

吴裕雄--天生自然TensorFlow2教程:Broadcasting

标签:ast   code   and   adc   技术   cep   port   dom   div   

原文地址:https://www.cnblogs.com/tszr/p/12123928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!