Closed mopatches closed 2 years ago
The Fitters' save_model and load_model use dill. Using pickle is a better option as it's part of the standard library and doesn't require all save and load use cases to be file based.
save_model
load_model
dill
pickle
The Fitters'
save_model
andload_model
usedill
. Usingpickle
is a better option as it's part of the standard library and doesn't require all save and load use cases to be file based.