You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Python classes / functions generated with Pyo3 are not picklable (PyO3/pyo3#100) which makes their use problematic in typical data science workflows (e.g. with joblib parallel or in scikit-learn pipelines).
Implementing __getstate__, __setstate__ methods is probably necessary to make it work.
The text was updated successfully, but these errors were encountered:
Currently, Python classes / functions generated with Pyo3 are not picklable (PyO3/pyo3#100) which makes their use problematic in typical data science workflows (e.g. with joblib parallel or in scikit-learn pipelines).
Implementing
__getstate__
,__setstate__
methods is probably necessary to make it work.The text was updated successfully, but these errors were encountered: