Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed prints from python examples
  • Loading branch information
lisitsyn committed Aug 25, 2012
1 parent 6015883 commit 66f09d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -17,7 +17,7 @@ def classifier_multiclassmachine_modular (fm_train_real=traindat,fm_test_real=te

classifier = LibSVM()
classifier.set_epsilon(epsilon)
print labels.get_labels()
#print labels.get_labels()
mc_classifier = KernelMulticlassMachine(MulticlassOneVsRestStrategy(),kernel,classifier,labels)
mc_classifier.train()

Expand Down
Expand Up @@ -18,7 +18,7 @@ def classifier_multiclassmultipleoutputliblinear_modular (fm_train_real=traindat

label_pred = classifier.apply_multiclass_multiple_output(feats_test,2)
out = label_pred.get_labels()
print out
#print out
return out

if __name__=='__main__':
Expand Down

0 comments on commit 66f09d4

Please sign in to comment.