Reputation: 81
I am trying to use SVM classifier in Weka. I downloaded weka-3-7-13 version. When i click on the classifier tab, SVM is not in the list.
How to use SVM in this tool? Please help me to overcome this problem.
Upvotes: 8
Views: 21648
Reputation: 189
In Weka (GUI) go to Tools -> PackageManager and install LibSVM/LibLinear (both are SVM).
One more implementation of SVM is 'SMO' which is in Classify -> Classifier -> Functions. (if not listed then install as mentioned above)
Alternatively you can use .jar files of these algorithms and use through your java code.
Upvotes: 16
Reputation: 2862
SVM classes are not integrated with the WEKA vanilla. you have to add LIBSVM library (jar file ) manually into your project to get SVM classifiers
Upvotes: 2