代码拉取完成,页面将自动刷新
.. py:function:: mindspore.ops.where(condition, input, other) 返回一个Tensor,Tensor的元素从 `input` 或 `other` 中根据 `condition` 选择。 .. math:: output_i = \begin{cases} input_i,\quad &if\ condition_i \\ other_i,\quad &otherwise \end{cases} 参数: - **condition** (Tensor[bool]) - 如果是 ``True`` ,选取 `input` 中的元素,否则选取 `other` 中的元素。 - **input** (Union[Tensor, Scalar]) - 在 `condition` 为 ``True`` 的索引处选择的值。 - **other** (Union[Tensor, Scalar]) - 当 `condition` 为 ``False`` 的索引处选择的值。 返回: Tensor,其中的元素从 `input` 和 `other` 中选取。 异常: - **TypeError** - 如果 `condition` 不是Tensor。 - **TypeError** - 如果 `input` 和 `other` 都是常量。 - **ValueError** - `condition` 、 `input` 和 `other` 不能互相广播。
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。