1. 程式人生 > >tf.tile()用法及例項

tf.tile()用法及例項

tf.tile(  
    input,     #輸入  
    multiples,  #某一維度上覆制的次數  
    name=None  
)

例項

import tensorflow as tf
a = tf.tile([1,2,3],[2])
b = tf.tile([[1,2],
             [3,4],
             [5,6]],[2,3])
with tf.Session() as sess:
    print(sess.run(a))
    print(sess.run(b))

結果: