Currently I'm using Weka and I'm trying to use the nearest neighbor method to classify my test set. Both my train set and test set have 11 columns with numerical values, the last column being the one to classify. Both have been converted from .csv to .arff with the Weka tool.
First I uploaded the training set and in the "classify" tab under "test options" I checked "use training set". I selected the "IBk" classifier and put # of neighbors to 10. The (bad) output was this:
Next I checked "supplied test set" and uploaded my test set. Only the last column is empty (apart from the header). But when I try to run it,I get the following output saying none were classified:
At this point I just don't understand what to do. As far as I can tell my test and train set are correct, as they are identical apart from the numerical values in the columns and I'm simply trying to use my test set after having trained on the train set... Somewhere I'm doing something terribly wrong.