I am trying to build a text classifier based on weka SMO algo. I have created the following code based on diferent resources http://pastebin.com/vSek2gZ9
But it is not giving the actual result. I am using the movie reviews corpus in the training and testing phase
Can anybody help me to up and running
To get the model specified in the code you can use this corpus http://nltk.github.com/nltk_data/packages/corpora/movie_reviews.zip Also uncomment the following lines in main
// String dp = "/usr/share/nltk_data/corpora/movie_reviews";
// buildSVMClassifier(dp);
Edit : I got solution from this stackoverflow Basic text classification with Weka in Java Thanks for the suggestions and hints
Jaggu