Scikit-learn, GMM: Issue with return from .means_ attribute
问题 So apparently.. the means_ attribute returns different results from the means I calculated per each cluster. (or I have a wrong understanding of what this returns!) Following is the code I wrote to check how GMM fits to the time series data I have. import numpy as np import pandas as pd import seaborn as sns import time import matplotlib as mpl import matplotlib.pyplot as plt from sklearn.mixture import BayesianGaussianMixture from sklearn.mixture import GaussianMixture toc = time.time()