I am using scikit package for twitter sentiment analysis. I am successful in training and predicting using Decision Tree classifier in the scikit package. But somehow I get all 0's in my confusion matrix. My code is:

fvecs = [tweet_features.make_tweet_nparr(t) for (t,s) in tweets]  
v_train = fvecs[:2500]  
v_test  = fvecs[2500:]  
my_fvecs = [s for (t, s) in tweets]  
temp1 = my_fvecs[:2500]  
temp2 = my_fvecs[2500:]  

clf = tree.DecisionTreeClassifier()  
clf.fit(v_train, temp1)  
result = clf.predict(v_test)  

print metrics.confusion_matrix( temp2, result, labels=None)  

Please let me know where I might be going wrong.

link|improve this question
what metrics module are you using ? the one of nltk ? Because I don't find your confusion_matrix function in the current version of nltk. – shenshei Feb 12 at 9:58
This one comes from sklearn.metrics. – ogrisel Feb 13 at 8:11
1  
@mihirk can you update your question by adding the outcome of print temp2[:100], result[:100]? Also if your features are sparse high dimensional (text based) you should probably use a linear model such as Perceptron, SGDClassifier or LinearSVC with a larger dataset (if possible). If not you could try ExtraTreesClassifier rather than a single DecisionTreeClassifier (unless you plan to introspect the inner structure of the learned tree). BTW, the name of the project is "scikit-learn" for machine learning. There are other scikits projects for image processing, statistic modeling... – ogrisel Feb 13 at 8:15
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.