I’ve just used Weka to train my SVM classifier under “Classify” tag.
Now I want to further investigate which data samples are mis-classified,I need to study their pattern,but I don’t know where to look at this from Weka.
Could anyone give me some help please?
Thanks in advance.
I’ve just used Weka to train my SVM classifier under Classify tag. Now I
Share
You can enable the option from:
You will get the following instance predictions:
EDIT
As I explained in the comments, you can use the StratifiedRemoveFolds filter to manually split the data and create the 10-folds of the cross-validation.
This Primer from the Weka wiki has some examples of how to invoke Weka from the command line. Here’s a sample bash script:
For each fold, this will create two datasets (train/test) and store the predictions in a text file as well. That way you can match each index with the actual instance in the test set.
Of course the same can be done in the GUI if you prefer (only a bit more tedious!)