Reputation: 31
I tried using Scikit Learn's classification_report()
to find other details why I got a certain score but instead I got an error.
ValueError: continuous is not supported
I just want to know what it is and how to resolve it?
Upvotes: 0
Views: 249
Reputation: 302
Probably you are trying to classify a continuous value. When the values are continuous you need to perform a regression. If you want to perform a classification you then perform a classifier in which you assign the features to a class (group).
Upvotes: 1