From 612e8be44f61df670eea606332f9b921a5d5788b Mon Sep 17 00:00:00 2001 From: simson <526422051@qq.com> Date: Sat, 5 Sep 2020 11:19:19 +0800 Subject: [PATCH] fix the indentation bug in CTCLoss --- mindspore/ops/operations/nn_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ops/operations/nn_ops.py b/mindspore/ops/operations/nn_ops.py index f3ab97b96..40e8a82a7 100644 --- a/mindspore/ops/operations/nn_ops.py +++ b/mindspore/ops/operations/nn_ops.py @@ -5308,7 +5308,7 @@ class CTCLoss(PrimitiveWithInfer): Outputs: - **loss** (Tensor) - A tensor containing log-probabilities, the shape is :math:`(batch_size)`. The tensor has - the same type with `inputs`. + the same type with `inputs`. - **gradient** (Tensor) - The gradient of `loss`, has the same type and shape with `inputs`. Examples: -- GitLab