From bed4b839f62eb6e725830d41339854dbe36c19b1 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Sun, 22 Oct 2017 14:57:13 -0500 Subject: [PATCH] DOC: Fixed typo --- sklearn/decomposition/truncated_svd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/decomposition/truncated_svd.py b/sklearn/decomposition/truncated_svd.py index 028304672e4da..726f9162eb925 100644 --- a/sklearn/decomposition/truncated_svd.py +++ b/sklearn/decomposition/truncated_svd.py @@ -110,7 +110,7 @@ class TruncatedSVD(BaseEstimator, TransformerMixin): Notes ----- - SVD suffers from a problem called "sign indeterminancy", which means the + SVD suffers from a problem called "sign indeterminacy", which means the sign of the ``components_`` and the output from transform depend on the algorithm and random state. To work around this, fit instances of this class to data once, then keep the instance around to do transformations.