Skip to content

Commit d4802ae

Browse files
mail-liamamueller
authored andcommitted
Fix mean shift equation as per issue 12420 (scikit-learn#12455)
#### Reference Issues/PRs Fixes scikit-learn#12420 #### What does this implement/fix? Explain your changes. Updates the mean shift equation as per issue 12420
1 parent e67e30c commit d4802ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/modules/clustering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ is updated according to the following equation:
387387

388388
.. math::
389389
390-
x_i^{t+1} = x_i^t + m(x_i^t)
390+
x_i^{t+1} = m(x_i^t)
391391
392392
Where :math:`N(x_i)` is the neighborhood of samples within a given distance
393393
around :math:`x_i` and :math:`m` is the *mean shift* vector that is computed for each

0 commit comments

Comments
 (0)