可以說,我們想要使用Keras/TensorFlow處理圖像(或ndim向量)。 而我們想要花哨的正規化,將每個輸入移動到左邊的隨機位置(在右邊再次出現掉頭部分)。Tensorflow中的向量轉換(Roll)
怎麼可能進行查看和解決:
1)
有沒有爲TensorFlow numpy的滾動功能的變化?
2)
x - 2D tensor
ri - random integer
concatenate(x[:,ri:],x[:,0:ri], axis=1) #executed for each single input to the layer, ri being random again and again (I can live with random only for each batch)
感謝您糾正我的錯誤! – Khaj
最後一行沒有':',應該是'y = tf.concat([x [:,x_len-i:],x [:,:x_len-i]],axis = 1)' – hannes