Quick and dirty Python3 implementation of Mixtures of Probabilistic Principal Component Analysers
Mixtures of Probabilistic Principal Component Analysers (MPPCA) is a simple yet powerful algorithm used to cluster data into linear subspaces. Its applications cover clustering, density estimation and classification.
See the ipython notebook mppca_demo.ipynb
.
This implementation is a translation of the matlab implementation Mathieu Andreux and I made in Matlab.
In high dimensions, a logarithmic representation of numbers was required to avoid underflows. Other tricks are well described in the original paper.
"Mixtures of Probabilistic Principal Component Analysers", Michael E. Tipping and Christopher M. Bishop, Neural Computation 11(2), pp 443–482, MIT Press, 1999
WTFPL