mindspore.ops.where

查看源文件
mindspore.ops.where(condition, input, other)[源代码]

返回一个tensor,其中元素根据 conditioninputother 中选择。

支持广播。

outputi={inputi,if conditioniotheri,otherwise
参数:
  • condition (Tensor[bool]) - 如果为 True ,选取 input 中的元素,否则选取 other 中的元素。

  • input (Union[Tensor, Scalar]) - 在 conditionTrue 的索引处选择的值。

  • other (Union[Tensor, Scalar]) - 当 conditionFalse 的索引处选择的值。

返回:

Tensor

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> input = mindspore.tensor([[0, 1],
...                           [2, 3]])
>>> other = mindspore.tensor([[1, 1],
...                           [1, 1]])
>>> condition = input < 3
>>> mindspore.ops.where(condition, input, other)
Tensor(shape=[2, 2], dtype=Int64, value=
[[0, 1],
 [2, 1]])