From 924734fd3a0ce7929c7484100b2a71a16812cb09 Mon Sep 17 00:00:00 2001 From: guofei <52460041+gfwm2013@users.noreply.github.com> Date: Mon, 24 Aug 2020 22:31:27 +0800 Subject: [PATCH] Refine typo of english document of paddle.prod (#26546) * Refine typo of english document of paddle.prod test=document_fix --- python/paddle/tensor/math.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/tensor/math.py b/python/paddle/tensor/math.py index 3b038536a1..85441597cf 100644 --- a/python/paddle/tensor/math.py +++ b/python/paddle/tensor/math.py @@ -1925,7 +1925,7 @@ def prod(x, axis=None, keepdim=False, dtype=None, name=None): Compute the product of tensor elements over the given axis. Args: - x(Tensor): An N-D Tensor, the data type is float32, float64, int32 or int64. + x(Tensor): The input tensor, its data type should be float32, float64, int32, int64. axis(int|list|tuple, optional): The axis along which the product is computed. If :attr:`None`, multiply all elements of `x` and return a Tensor with a single element, otherwise must be in the range :math:`[-x.ndim, x.ndim)`. If :math:`axis[i]<0`, @@ -1935,7 +1935,7 @@ def prod(x, axis=None, keepdim=False, dtype=None, name=None): This is very useful for avoiding data type overflows. The default value is None, the dtype of output is the same as input Tensor `x`. keepdim(bool, optional): Whether to reserve the reduced dimension in the output Tensor. The result - tensor will have one fewer dimension than the input unless keep_dim is true. Default is False. + tensor will have one fewer dimension than the input unless `keepdim` is true. Default is False. name(string, optional): The default value is None. Normally there is no need for user to set this property. For more information, please refer to :ref:`api_guide_Name` . -- GitLab