Browse Source

Fix a doc error in ReduceLogSumExp

tags/v1.0.0
peixu_ren 5 years ago
parent
commit
26a7ab6ec8
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      mindspore/nn/layer/math.py

+ 7
- 7
mindspore/nn/layer/math.py View File

@@ -36,14 +36,14 @@ class ReduceLogSumExp(Cell):
The dtype of the tensor to be reduced is number. The dtype of the tensor to be reduced is number.


Args: Args:
keep_dims (bool): If true, keep these reduced dimensions and the length is 1.
If false, don't keep these dimensions.
Default : False.
keep_dims (bool): If True, keep these reduced dimensions and the length is 1.
If False, don't keep these dimensions.
Default : False.
axis (Union[int, tuple(int), list(int)]) - The dimensions to reduce. Default: (), reduce all dimensions.
Only constant value is allowed.


Inputs: Inputs:
- **input_x** (Tensor[Number]) - The input tensor. With float16 or float32 data type. - **input_x** (Tensor[Number]) - The input tensor. With float16 or float32 data type.
- **axis** (Union[int, tuple(int), list(int)]) - The dimensions to reduce. Default: (), reduce all dimensions.
Only constant value is allowed.


Outputs: Outputs:
Tensor, has the same dtype as the `input_x`. Tensor, has the same dtype as the `input_x`.
@@ -57,8 +57,8 @@ class ReduceLogSumExp(Cell):


Examples: Examples:
>>> input_x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32)) >>> input_x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32))
>>> op = nn.ReduceLogSumExp(keep_dims=True)
>>> output = op(input_x, 1)
>>> op = nn.ReduceLogSumExp(keep_dims=True, 1)
>>> output = op(input_x)
>>> output.shape >>> output.shape
(3, 1, 5, 6) (3, 1, 5, 6)
""" """


Loading…
Cancel
Save