Recently I started using Weka Explorer for classification problem. I have two types of features
- around 1200 features has binary features with values {0,1}
- around 30 features has some numeric integer value like 1213.
Currently I am using naive Bayes classifier.
My question is: for better classification result do I need to have all the features in the same format like binary format?
Right now I am using weka unsupervised filter NumericToBinary to convert all numeric features to binary ones. Is this a correct way?
Any guidance will be helpful.