a = 10*tf.random_normal([3,3,3,3])
c = tf.tile(a, [2,4,6,8], name=None)
with tf.Session() as sess:
aa = sess.run(c)
print(aa.shape)
输出[6,12,18,24]
a = 10*tf.random_normal([3,3,3,3])
c = tf.tile(a, [2,4,6,8], name=None)
with tf.Session() as sess:
aa = sess.run(c)
print(aa.shape)
输出[6,12,18,24]
本文标题:关于矩阵扩充tf.tile
本文链接:https://www.haomeiwen.com/subject/pueugxtx.html
网友评论