Viewing a single comment thread. View all comments

-bb_ t1_iz16yje wrote

You also can use joblib.dump, since it already comes with sklearn

−1

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

8