1 1 vote 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 ? Machine Learning machine-learning predict data match + – 0% Accept Rate Accepted 0 answers out of 1 questions metelon 140 points 1 1 3 answer comment Share 0 reply Please log in or register to add a comment.
1 1 vote 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. tofighi answered Dec 15, 2020 tofighi 116k points 73 79 101 comment Share 0 reply Please log in or register to add a comment.