Want to create interactive content? It’s easy in Genially!

Over 30 million people create interactive content in Genially.

Check out what others have designed:

Transcript

Predict with a model

Fit a model

Instantiate a model with hyperparameter

Import class

gm.predict([[0, 0], [12, 3]])

gm.fit(X)

gm = GaussianMixture(n_components=2, random_state=0)

from sklearn.mixture import GaussianMixture