tf.where
简单解释
tf.where(conditon) 返回条件为True的下标。
tf.where(condition, x=X, y=Y) 条件为True的对应位置值替换为1,为False替换成0。
API
定义在tensorflow/python/ops/array_ops.py中。
1 | tf.where( |
tf.where(condition)代码示例
1 | import numpy as np |
tf.where(condition, x=X, y=Y)代码示例
1 | import numpy as np |