We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently none of the Rust downsamplers can be serialized with pickle as pickle throws a TypError when serializing a module
Minimal code example ⬇️
In [1]: from tsdownsample import MinMaxDownsampler In [2]: d = MinMaxDownsampler() In [3]: import pickle In [4]: pickle.dump(d, open('test.pkl', 'wb')) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[4], line 1 ----> 1 pickle.dump(d, open('test.pkl', 'wb')) TypeError: cannot pickle 'module' object
Related: PR #34 added support + tests for deepcopy
deepcopy
The text was updated successfully, but these errors were encountered:
jonasvdd
Successfully merging a pull request may close this issue.
Currently none of the Rust downsamplers can be serialized with pickle as pickle throws a TypError when serializing a module
Minimal code example ⬇️
Related: PR #34 added support + tests for
deepcopy
The text was updated successfully, but these errors were encountered: