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.
sklearn.metrics. – ogrisel Feb 13 at 8:11print temp2[:100], result[:100]? Also if your features are sparse high dimensional (text based) you should probably use a linear model such asPerceptron,SGDClassifierorLinearSVCwith a larger dataset (if possible). If not you could tryExtraTreesClassifierrather than a singleDecisionTreeClassifier(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