2014-07-29 13:55 GMT+02:00 Sheila the angel <[email protected]>: >>No. If there were, we would have implemented predict_proba. > One of my concern is sklearn.neighbors.NearestCentroid . > The algorithm "nearest shrunken centroids" applied in R (called pamr) > provide "posterior probabilities" while sklearn.neighbors.NearestCentroid is > missing this feature.
I believe LDA is equivalent to nearest centroid with Euclidean distances. That implements predict_proba, so you can try it instead of NearestCentroid. ------------------------------------------------------------------------------ Infragistics Professional Build stunning WinForms apps today! Reboot your WinForms applications with our WinForms controls. Build a bridge from your legacy apps to the future. http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
