From a416c183567c4d57fa563621743c349874f2e519 Mon Sep 17 00:00:00 2001 From: MechCoder <manojkumarsivaraj334@gmail.com> Date: Tue, 26 Aug 2014 15:42:22 +0200 Subject: [PATCH] DOC: Added np.sqrt since default is 'squared=False' --- sklearn/utils/extmath.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sklearn/utils/extmath.py b/sklearn/utils/extmath.py index 4a9428ba51..94fd73c52f 100644 --- a/sklearn/utils/extmath.py +++ b/sklearn/utils/extmath.py @@ -54,8 +54,8 @@ def squared_norm(x): def row_norms(X, squared=False): """Row-wise (squared) Euclidean norm of X. - Equivalent to (X * X).sum(axis=1), but also supports CSR sparse matrices - and does not create an X.shape-sized temporary. + Equivalent to np.sqrt((X * X).sum(axis=1)), but also supports CSR sparse + matrices and does not create an X.shape-sized temporary. Performs no input validation. """ -- GitLab