I have a large dataset for two classes with different attributes scales (some attributes from 5 to 10, others from 0 to 100, for example). I know if I use directly a kNN algorithm that difference will invalidate the analysis and I need to normalize the attributes.
Some classifiers on WEKA appear to do that normalization, like the RBF or SMO, but I need to use other classifiers, firstly IBK classifier (KNN).
Does weka lead with it in some way? How can I incorporate a normalization process in KNN classification?
Thanks