@@ -499,7 +499,7 @@ class PLSRegression(_PLS):
499499 The maximum number of iterations of the power method when
500500 `algorithm='nipals'`. Ignored otherwise.
501501
502- tol : real , default 1e-06
502+ tol : float , default= 1e-06
503503 The tolerance used as convergence criteria in the power method: the
504504 algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
505505 than `tol`, where `u` corresponds to the left singular vector.
@@ -597,7 +597,7 @@ class PLSCanonical(_PLS):
597597 the maximum number of iterations of the power method when
598598 `algorithm='nipals'`. Ignored otherwise.
599599
600- tol : real , default 1e-06
600+ tol : float , default= 1e-06
601601 The tolerance used as convergence criteria in the power method: the
602602 algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
603603 than `tol`, where `u` corresponds to the left singular vector.
@@ -703,7 +703,7 @@ class CCA(_PLS):
703703 max_iter : int, default=500
704704 the maximum number of iterations of the power method.
705705
706- tol : real , default 1e-06
706+ tol : float , default= 1e-06
707707 The tolerance used as convergence criteria in the power method: the
708708 algorithm stops whenever the squared norm of `u_i - u_{i-1}` is less
709709 than `tol`, where `u` corresponds to the left singular vector.
0 commit comments