!33786 fix chinese api docs in nn

Merge pull request !33786 from liutongtong9/code_docs_fixlr
This commit is contained in:
i-robot 2022-05-05 06:55:32 +00:00 committed by Gitee
commit 19464ee3e7
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
4 changed files with 6 additions and 7 deletions

View File

@ -7,10 +7,10 @@ mindspore.nn.ConfusionMatrix
如果您只想使用混淆矩阵,请使用该类。如果想计算"PPV"、"TPR"、"TNR"等,请使用'mindspore.nn.ConfusionMatrixMetric'类。
**参数:**
**参数:**
- **num_classes** (int) - 数据集中的类别数量。
- **normalize** (str) - 计算ConfsMatrix的参数支持四种归一化模式默认值None
- **normalize** (str) - 计算ConfsMatrix的参数支持四种归一化模式默认值'no_norm'
- **"no_norm"** (None):不使用标准化。
- **"target"** (str):基于目标值的标准化。
@ -35,7 +35,7 @@ mindspore.nn.ConfusionMatrix
使用y_pred和y更新内部评估结果。
**参数:**
**参数:**
- ***inputs** (tuple) - 输入 `y_pred``y``y_pred``y``Tensor` 、列表或数组。
`y_pred` 是预测值, `y` 是真实值, `y_pred` 的shape是 :math:`(N, C, ...)`:math:`(N, ...)` `y` 的shape是 :math:`(N, ...)`
@ -44,4 +44,3 @@ mindspore.nn.ConfusionMatrix
- **ValueError** - 输入参数的数量不等于2。
- **ValueError** - 如果预测值和标签的维度不一致。

View File

@ -29,5 +29,5 @@ mindspore.nn.inverse_decay_lr
- **TypeError** - `total_step``step_per_epoch``decay_epoch` 不是int。
- **TypeError** - `is_stair` 不是bool。
- **ValueError** - `learning_rate``decay_rate` 不是float。
- **TypeError** - `learning_rate``decay_rate` 不是float。
- **ValueError** - `learning_rate``decay_rate` 小于等于0。

View File

@ -29,5 +29,5 @@ mindspore.nn.natural_exp_decay_lr
- **TypeError** - `total_step``step_per_epoch``decay_epoch` 不是int。
- **TypeError** - `is_stair` 不是bool。
- **ValueError** - `learning_rate``decay_rate` 不是float。
- **TypeError** - `learning_rate``decay_rate` 不是float。
- **ValueError** - `learning_rate``decay_rate` 小于等于0。

View File

@ -18,7 +18,7 @@ mindspore.nn.piecewise_constant_lr
**返回:**
list[float]。列表的大小为 :math:`MN`。
list[float]。列表的大小为 :math:`M_N`。
**异常:**