I am working with the nice Python scikits.learn package to train some classifiers for part-based face recognition with the Histogram of Oriented Gradient feature. I've successfully trained a linear SVM to recognize a particular face part, but I am having strange issues with the predict_proba() function.

I use the following training code:

 import numpy as np
 from scikits.learn import svm

 # Do some stuff to prepare DATA matrix of feature vector samples
 # And LABELS vector of 1's and 0's for positive and negative samples.
 clf = svm.SVC(kernel='linear',probability=True)
 clf.fit(DATA, LABELS)

But then when I run predict_proba([test_vector]), I only ever see [[ 0.5 0.5 ]] as the output, i.e. the uniform probability between my two binary classes.

Oddly, though, when I just use the predict() function, it performs fairly well and certainly cannot be just trivially assigning everything uniform probabilities. On a test image, I get much more dense '1' classifications around the correct face part, and then some expected noisy '1' classifications elsewhere around the scene, but predominantly all '0' classifications, as expected.

What could be causing this malfunction with predict_proba()?

link|improve this question

I'm not able to reproduce this error using the 0.8 branch of the scikit-learn Git repo. Have you considered upgrading to 0.9? If that doesn't fix the error, you might want to file a bug report. – larsmans Nov 24 '11 at 14:17
Otherwise, post a minimal dataset here that will trigger the bug. – larsmans Nov 24 '11 at 14:25
Is it possible that there is some size limitation on the number of feature vectors? When I fit a classifier with only the first 5 feature vectors and only the first 5 labels, then predict_proba() seems to work fine. But when I repeat the same code but leave in all 7206 features and 7206 labels, then the output classifier only ever gives [0.5 0.5] as the probability vector. – EMS Nov 24 '11 at 17:14
What does the cache_size parameter of the SVC() function control? – EMS Nov 24 '11 at 17:15
Also, I have switched to an RBF kernel and the problem seems to go away. But this itself is puzzling. If the training data is not well separated linearly, does scikits handle this in any special way? – EMS Nov 24 '11 at 17:20
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.