From 3382040e1586e3bc1f40b782a1b9d68e1757df1a Mon Sep 17 00:00:00 2001 From: zhaozhenlong Date: Sat, 23 May 2020 19:17:08 +0800 Subject: [PATCH] fix comment of scatter_max --- mindspore/ops/operations/array_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ops/operations/array_ops.py b/mindspore/ops/operations/array_ops.py index 76f087e9e5..b7fdc27076 100644 --- a/mindspore/ops/operations/array_ops.py +++ b/mindspore/ops/operations/array_ops.py @@ -2107,7 +2107,7 @@ class ScatterMax(PrimitiveWithInfer): use_locking (bool): Whether protect the assignment by a lock. Default: True. Inputs: - - **input_x** (Tensor) - The target tensor. + - **input_x** (Parameter) - The target parameter. - **indices** (Tensor) - The index to do max operation whose data type should be int. - **updates** (Tensor) - The tensor doing the maximum operation with 'input_x', the data type is same as 'input_x', the shape is 'indices_shape + x_shape[1:]'.