Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Classifier options greyed out in Weka [closed]

I have numeric data which has missing values. I want to classify the data using Naive Bayes Classifier in Weka but the option is grayed out. Please help.

like image 260
user2197953 Avatar asked Oct 27 '25 01:10

user2197953


1 Answers

If a classifier is grayed out, it means that it doesn't support the kind of task you want to do. This could be because of the type of features or because of the type of predictions you want to make.

In your case it could be that you're trying to predict a numeric instead of a categorical attribute.

like image 68
Lars Kotthoff Avatar answered Oct 28 '25 17:10

Lars Kotthoff