First time here? Checkout the FAQ!
x
+1 vote
211 views
asked in Machine Learning by (140 points)  
When I standardized my data when I created my model. Do I need to save the standardization transformation when I want to predict with my model new data ?
  

1 Answer

+1 vote
answered by (115k points)  

The details of standardized vector is stored in the transformer object. For example X_scaled on this page is storing all details for the mean and SD of the original vectors in training data, and you can use it to scale the new vectors.

...