I read it from a post that someone said:
For feature scaling, you learn the means and standard deviation of the training set, and then:
- Standardize the training set using the training set means and standard deviations.
- Standardize any test set using the training set means and standard deviations.
But now my question is, after fitting a model using scaled training data, should I then apply this fitted model onto scaled or unscaled test data? Thanks!