Tensorflow:切片PartitionedVariable

时间:2017-08-26 21:14:57

标签: tensorflow

我创建了一个TensorFlow PartitionedVariable对象。不幸的是,我需要在程序的其他一些部分切片(不是根据变量的分区方式)。不幸的是,当我尝试显而易见的(X[count:])时,我收到错误TypeError: PartitionedVariable object has no attribute getitem。这是一个错误,还是有关于如何切片PartitionedVariable的解决方法?

1 个答案:

答案 0 :(得分:0)

我担心你必须使用tf.slice()

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

在你的情况下。