vtext icon indicating copy to clipboard operation
vtext copied to clipboard

Make estimators picklables

Open rth opened this issue 5 years ago • 0 comments

Currently, Python classes / functions generated with Pyo3 are not picklable (https://github.com/PyO3/pyo3/issues/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.

rth avatar Mar 31 '19 09:03 rth