We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b72b57 commit 80d674eCopy full SHA for 80d674e
sklearn/impute/_iterative.py
@@ -68,8 +68,8 @@ class IterativeImputer(_BaseImputer):
68
Maximum number of imputation rounds to perform before returning the
69
imputations computed during the final round. A round is a single
70
imputation of each feature with missing values. The stopping criterion
71
- is met once `max(abs(X_t - X_{t-1}))/max(abs(X[known_vals]))` < tol,
72
- where `X_t` is `X` at iteration `t. Note that early stopping is only
+ is met once `max(abs(X_t - X_{t-1}))/max(abs(X[known_vals])) < tol`,
+ where `X_t` is `X` at iteration `t`. Note that early stopping is only
73
applied if ``sample_posterior=False``.
74
75
tol : float, default=1e-3
0 commit comments