Skip to content

Commit 80d674e

Browse files
alfaro96NicolasHug
andauthored
DOC Fix closing backtick in IterativeImputer (scikit-learn#19476)
Co-authored-by: Nicolas Hug <[email protected]>
1 parent 4b72b57 commit 80d674e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sklearn/impute/_iterative.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ class IterativeImputer(_BaseImputer):
6868
Maximum number of imputation rounds to perform before returning the
6969
imputations computed during the final round. A round is a single
7070
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
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
7373
applied if ``sample_posterior=False``.
7474
7575
tol : float, default=1e-3

0 commit comments

Comments
 (0)