Skip to content

Commit fc66544

Browse files
committed
cosmit
1 parent 4f71f3b commit fc66544

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

sklearn/mixture/dpgmm.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -728,18 +728,17 @@ def __init__(self, n_components=1, covariance_type='diag', alpha=1.0,
728728
self.alpha = alpha
729729

730730
def _fit(self, X, y=None):
731-
"""Estimate model parameters with the variational
732-
algorithm.
731+
"""Estimate model parameters with the variational algorithm.
733732
734733
For a full derivation and description of the algorithm see
735734
doc/modules/dp-derivation.rst
736735
or
737736
http://scikit-learn.org/stable/modules/dp-derivation.html
738737
739-
A initialization step is performed before entering the em
738+
A initialization step is performed before entering the EM
740739
algorithm. If you want to avoid this step, set the keyword
741-
argument init_params to the empty string '' when when creating
742-
the object. Likewise, if you would like just to do an
740+
argument init_params to the empty string '' when creating
741+
the object. Likewise, if you just would like to do an
743742
initialization, set n_iter=0.
744743
745744
Parameters

0 commit comments

Comments
 (0)