0
M = tf.concat([tensor]*N, axix = 0)
但現在什麼,N是一個張量,在運行時決定。
other_tensor = tf.placeholder(dtype=tf.int32, shape=[None, 2])
N = tf.shape(other_tensor)[0] # N is None, and it is decided in run time.
那麼,該怎麼做?
感謝您回答。也許我沒有說清楚。在我的情況下,a = tf.placeholder(dtype = tf.int32,shape = [None,2]) –
@ZehaoShi看着你以前的問題,答案是'不,它根本不清楚'。要回答您的後續問題,請轉至get_shape鏈接,查看動態形狀的情況。 –
我使用tf.shape()獲取動態形狀。 tf.tile()正是我想要的。非常感謝你。爲了方便他人,我現在正在重寫這個問題。 –