Replies: 1 comment
-
|
Yes — when you pickle the When you load it back, you can use it directly on new data:
You do not need to manually reapply Just note: scikit-learn recommends saving models using joblib instead of pickle:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm comparing a number of classifiers & want to save the models. For instance,
My question is, when I come to use those models, will the pipe line be part of the loaded model or with the pickle file just contain the model parameters & will have to apply the
StandardScaler()function to any input data?Beta Was this translation helpful? Give feedback.
All reactions