2017-08-26 84 views
1

我創建了一個TensorFlow PartitionedVariable對象。不幸的是,我需要在我的程序的其他位置切片(而不是根據變量如何分區)。不幸的是,當我嘗試顯而易見(X[count:])時,出現錯誤TypeError: PartitionedVariable object has no attribute getitem。這是一個錯誤,或者有什麼解決方法如何切片PartitionedVariableTensorflow:切片PartitionedVariable

回答

0

恐怕你不得不使用tf.slice()

tf.slice(X, [count], [-1]) 

你的情況。