Submitted by unofficialmerve t3_zd3n8s in MachineLearning
-bb_ t1_iz16yje wrote
You also can use joblib.dump
, since it already comes with sklearn
unofficialmerve OP t1_iz19n6x wrote
it uses pickle's way of serialization under the hood. the difference between pickle and joblib is that one is performing better with numpy objects AFAIK. you shouldn't deserialize any joblib file on your local.
see one of the sklearn core developers' neat response on difference between them: https://stackoverflow.com/a/12617603
-bb_ t1_iz1b4ym wrote
Didn't know, thanks :) It even has a warning about it: https://github.com/joblib/joblib/blob/6836640abba55611d6e57f20338ea54b3e27f296/joblib/numpy_pickle.py#L609
unofficialmerve OP t1_iz1jpn9 wrote
no worries, I hope you'll find it useful! 🙂
Viewing a single comment thread. View all comments