Skip to content

Commit

Permalink
Add missing type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
adonath committed Dec 18, 2024
1 parent 5f173a1 commit b8c7a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gmmx/gmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ def from_k_means(
n_components: int,
reg_covar: float = 1e-6,
covariance_type: CovarianceType = CovarianceType.full,
**kwargs,
) -> None:
**kwargs: dict,
) -> GaussianMixtureModelJax:
"""Init from k-means clustering
Parameters
Expand Down

0 comments on commit b8c7a77

Please sign in to comment.