Question on Applying Model/normalizing
Hi,
I fit Weka's MLP model and choose the option to normalize my data, saved my model, and now I want to apply that model to a new dataset.
I'm wondering how RM/Weka handle the normalization. That is, I want my dataset to be scaled the same way as my old data set, for example, say the normalization did something like this
variable1 in old dataset:
1, 2, 3, 4, 5 --> .0, .2, .4, .6, .8, 1
variable1 in new dataset::
1,2,3 --> ????
would it normalize var1 in the new dataset to have values of .0, .2, .4 (desired) or 0, .5, 1 (not good)?
Thanks!
Mike