File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
sklearn/cross_decomposition Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -700,14 +700,8 @@ class CCA(_PLS):
700700 scale : bool, default=True
701701 Whether to scale `X` and `Y`.
702702
703- algorithm : {'nipals', 'svd'}, default='nipals'
704- The algorithm used to estimate the first singular vectors of the
705- cross-covariance matrix. 'nipals' uses the power method while 'svd'
706- will compute the whole SVD.
707-
708703 max_iter : int, default=500
709- the maximum number of iterations of the power method when
710- `algorithm='nipals'`. Ignored otherwise.
704+ the maximum number of iterations of the power method.
711705
712706 tol : real, default 1e-06
713707 The tolerance used as convergence criteria in the power method: the
@@ -763,7 +757,7 @@ class CCA(_PLS):
763757
764758 n_iter_ : list of shape (n_components,)
765759 Number of iterations of the power method, for each
766- component. Empty if `algorithm='svd'`.
760+ component.
767761
768762 Examples
769763 --------
You can’t perform that action at this time.
0 commit comments