0
我正在處理涉及刪除列的圖像集羣問題。我能想到的唯一方法是使用tf.concat來連接兩張原始張量和一些空白。我必須多次這樣做,我擔心這可能會很慢。有一個更好的方法嗎?有沒有更好的方法去除張量中的張量?
new_tensor = tf.concat(1, [tf.slice(data, [0, 0, 0], [to_remove - 1, image_size, 1]), tf.slice(data, [to_remove, 0, 0], [image_size - to_remove - 1, image_size, 1]), tf.zeros([image_size, 1], tf.float32)])
你可以粘貼你的代碼,讓其他人可以理解你的意圖嗎? – yuefengz