@@ -499,7 +499,7 @@ class PLSRegression(_PLS):
499
499
The maximum number of iterations of the power method when
500
500
`algorithm='nipals'`. Ignored otherwise.
501
501
502
- tol : real , default 1e-06
502
+ tol : float , default= 1e-06
503
503
The tolerance used as convergence criteria in the power method: the
504
504
algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
505
505
than `tol`, where `u` corresponds to the left singular vector.
@@ -597,7 +597,7 @@ class PLSCanonical(_PLS):
597
597
the maximum number of iterations of the power method when
598
598
`algorithm='nipals'`. Ignored otherwise.
599
599
600
- tol : real , default 1e-06
600
+ tol : float , default= 1e-06
601
601
The tolerance used as convergence criteria in the power method: the
602
602
algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
603
603
than `tol`, where `u` corresponds to the left singular vector.
@@ -703,7 +703,7 @@ class CCA(_PLS):
703
703
max_iter : int, default=500
704
704
the maximum number of iterations of the power method.
705
705
706
- tol : real , default 1e-06
706
+ tol : float , default= 1e-06
707
707
The tolerance used as convergence criteria in the power method: the
708
708
algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
709
709
than `tol`, where `u` corresponds to the left singular vector.
0 commit comments