关于矩阵扩充tf.tile
2017-12-27 本文已影响0人
ClarenceHoo
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]