I'm following this example here:
https://www.stackoverflow.com/questions/60205100/define-cluster-centers-manually
He sets the initial position of the centroids and run one iteration only, so the centroids end up being the initially set ones. I was able to reproduce in my code.
I am also looking for the probabilities as result, I was able using:
https://scikit-learn.org/0.16/modules/generated/sklearn.mixture.GMM.html
I tried to use the same approach (init) used on KMeans but I don't think there's a way using GMM.
So how can I do it? Are there other algorithms/ways?
PS: I understand that they are different algorithms, I'm only trying to interpret the data better.