如何选择张量中的项目组

时间:2017-11-25 21:00:14

标签: python tensorflow

在张量流中。 如何选择所有三元组,(x, y, cc > 0.5

enter image description here

我知道这可能是一个非常基本的问题,但我对Tensorflow来说是一个新手。

1 个答案:

答案 0 :(得分:2)

使用tf.where。例如,

x = np.random.rand(20,3)
sess = tf.Session()
print x[tf.where(tf.greater(x[:,2], 0.5)).eval(session=sess)]

或略微清洁, tf.boolean_mask(x,tf.greater(x[:,2], 0.5)).eval(session=sess)