Skip to content
Advertisement

ValueError: The number of classes has to be greater than one; got 1

I am trying to write an SVM following this tutorial but using my own data. https://pythonprogramming.net/preprocessing-machine-learning/?completed=/linear-svc-machine-learning-testing-data/

I keep getting this error:

JavaScript

My code is:

JavaScript

My array for features which is used for X looks like this:

JavaScript

My array for labels used in Y looks like this:

JavaScript

I have only used 5 sets of data so far because I knew the program wasn’t working.

I have attached pictures of the values in their csv files in case that helps.

featureVectors.csv

Labels.csv

Printing X.shape and y.shape and showing the full error

Advertisement

Answer

Looks to me like the problem is this line:

JavaScript

Since X has 5 rows, and you’ve set test_size to 4, X[:-test_size] only gives one row (the first one). Read up on python’s slice notation, if this confuses you: Explain Python’s slice notation

So there is only one class in the training set (“Square” in this case). I wonder if you meant to do X[:test_size] which would give the first 4 rows. Anyway, try training on a bigger data set.


I can reproduce your error with the following:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement