i have loaded a csv file in weka tool but J48 is not highlight

29 views Asked by At

i upload a csv file in weka tool. After preprocessing, i want to apply J48 classifier but J48 is not highlighted there.

i want to apply decision tree classifier but it is not highlighted

1

There are 1 answers

2
fracpete On

Each algorithm in Weka can only handle certain types of data (input attributes, class attribute, missong values etc), which define its capabilities. If these capabilities do not match the data, then the algorithm cannot be applied.

Check J48's capabilities (open its properties in the GenericObjectEditor and click on Capabilities) and check these against your dataset.

I would check whether your dataset has a numeric class atrribute and maybe string attributes.