File tree 1 file changed +2
-8
lines changed
sklearn/cross_decomposition
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -700,14 +700,8 @@ class CCA(_PLS):
700
700
scale : bool, default=True
701
701
Whether to scale `X` and `Y`.
702
702
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
-
708
703
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.
711
705
712
706
tol : real, default 1e-06
713
707
The tolerance used as convergence criteria in the power method: the
@@ -763,7 +757,7 @@ class CCA(_PLS):
763
757
764
758
n_iter_ : list of shape (n_components,)
765
759
Number of iterations of the power method, for each
766
- component. Empty if `algorithm='svd'`.
760
+ component.
767
761
768
762
Examples
769
763
--------
You can’t perform that action at this time.
0 commit comments