Pickle.dump doesn't work

pickle.dump runs infinitely and pkl file doesn’t appear in attached data.

You can reproduce this issue with this code:

import pandas as pd
import pickle

df = pd.DataFrame({'lol': [1,2,3,4]})

with open('model_w2v_.pkl', 'wb') as f:
    pickle.dump(df)

Is there any other way to export trained model from Datalore?

However gensim.models.Word2Vec save method works perfectly.

Hi!
Thanks to your report the bug was fixed and fix will be delivered very soon.
Thanks for your help!

2 Likes

Wow, that was jet fast!

1 Like