From 76654cad1856d359b0cc9fead0db765275e10bf2 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Fri, 10 Nov 2023 04:00:28 +0200 Subject: [PATCH] fix docstring --- nncf/experimental/tensor/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nncf/experimental/tensor/functions.py b/nncf/experimental/tensor/functions.py index 4c60bdb645d..197b7a8f6d2 100644 --- a/nncf/experimental/tensor/functions.py +++ b/nncf/experimental/tensor/functions.py @@ -71,7 +71,7 @@ def min(a: Tensor, axis: Optional[Union[int, Tuple[int, ...]]] = None, keepdims: :param a: The input tensor. :param axis: Axis or axes along which to operate. By default, flattened input is used. - :param keepdim: If this is set to True, the axes which are reduced are left in the result as dimensions with size + :param keepdims: If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array. False, by default. :return: Minimum of a. """