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 44b248c commit 96c5b8eCopy full SHA for 96c5b8e
sklearn/mixture/gaussian_mixture.py
@@ -727,7 +727,7 @@ def bic(self, X):
727
Returns
728
-------
729
bic: float
730
- The greater the better.
+ The lower the better.
731
"""
732
return (-2 * self.score(X) * X.shape[0] +
733
self._n_parameters() * np.log(X.shape[0]))
@@ -737,11 +737,11 @@ def aic(self, X):
737
738
Parameters
739
----------
740
- X : array of shape(n_samples, n_dimensions)
+ X : array of shape (n_samples, n_dimensions)
741
742
743
744
aic: float
745
746
747
return -2 * self.score(X) * X.shape[0] + 2 * self._n_parameters()
0 commit comments