Fix Chinese operator documentation problem list

This commit is contained in:
chenweitao_295 2022-01-22 15:01:03 +08:00
parent ee8fba498a
commit 1248cce836
3 changed files with 5 additions and 0 deletions

View File

@ -19,4 +19,5 @@ mindspore.ops.Erf
**异常:**
- **TypeError** - `x` 不是Tensor。
- **TypeError** - `x` 的数据类型既不是float16也不是float32。

View File

@ -5,6 +5,9 @@ mindspore.ops.Eye
创建一个主对角线上元素为1其余元素为0的Tensor。
.. note::
结合ReverseV2算子可以得到一个反对角线为1的Tensor但是目前ReverseV2算子只支持Ascend和GPU平台。
**输入:**
- **n** (int) - 指定返回Tensor的行数。仅支持常量值。

View File

@ -31,3 +31,4 @@ mindspore.ops.L2Normalize
- **TypeError** - `epsilon` 不是float。
- **TypeError** - `x` 不是Tensor。
- **TypeError** - `x` 的数据类型既不是float16也不是float32。
- **ValueError** - `x` 的维度不大于0。