在TensorFlow中,tensor也可以作为索引,但只能作为同样为tensor类型变量的索引,不能作为list类型变量的索引如下面的例子:
import tensorflow as tfindex = tf.to_int32([0,1,2]) # index是一个tensor
a = [[1,2,3], [4,5,6]]
b = a[index[0]]
sess = tf.InteractiveSession()
print(b)
TypeError: list indices must be integers or slices, not Tensor
若将a变为tensor类型
import tensorflow as tfindex = tf.to_int32([0,1,2]) # index是一个tensor
a = tf.convert_to_tensor([[1,2,3], [4,5,6]])
b = a[index[0]]
sess = tf.InteractiveSession()
print(sess.run(b)) # [1 2 3]