forked from mindspore-Ecosystem/mindspore
code docs
This commit is contained in:
parent
0a2607003a
commit
24aaf619c9
|
@ -1,7 +1,7 @@
|
|||
mindspore.ops.choice_with_mask
|
||||
=====================================
|
||||
|
||||
.. py:function:: mindspore.ops.choice_with_mask(input_x, count=256, seed=0, seed2=0)
|
||||
.. py:function:: mindspore.ops.choice_with_mask(input_x, count=256, seed=None)
|
||||
|
||||
对输入进行随机取样,返回取样索引和掩码。
|
||||
|
||||
|
@ -11,8 +11,7 @@ mindspore.ops.choice_with_mask
|
|||
参数:
|
||||
- **input_x** (Tensor[bool]) - 输入Tensor,bool类型。秩必须大于等于1且小于等于5。
|
||||
- **count** (int) - 取样数量,必须大于0。默认值:256。
|
||||
- **seed** (int) - 随机种子。默认值:0。
|
||||
- **seed2** (int) - 随机种子2。默认值:0。
|
||||
- **seed** (int) - 随机种子。默认值:None。
|
||||
|
||||
返回:
|
||||
两个Tensor,第一个为索引,另一个为掩码。
|
||||
|
@ -22,5 +21,5 @@ mindspore.ops.choice_with_mask
|
|||
|
||||
异常:
|
||||
- **TypeError** - `count` 不是int类型。
|
||||
- **TypeError** - `seed` 或 `seed2` 不是int类型。
|
||||
- **TypeError** - `seed` 不是int类型。
|
||||
- **TypeError** - `input_x` 不是Tensor。
|
||||
|
|
Loading…
Reference in New Issue