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 they are restricted to a single python minor version (tested for python 3.10, 3.11 and 3.12). All expect different numbers of arguments during loading. The error is:
joblib stored in python 3.10 opened in python 3.12: def _unpickle__CustomPickled(serialized):
"""standard unpickling for _CustomPickled.
Uses NumbaPickler to load.
"""
> ctor, states = loads(serialized)
E TypeError: code() argument 13 must be str, not int
Do you have any suggestion to increase compatibility (when I disable numba.jit, it doesn't allow pickling the classifier)?
The text was updated successfully, but these errors were encountered:
Hi, this is more a developer question, then a bug report. I want to load classifiers like across different environments:
Currently they are restricted to a single python minor version (tested for python 3.10, 3.11 and 3.12). All expect different numbers of arguments during loading. The error is:
Do you have any suggestion to increase compatibility (when I disable numba.jit, it doesn't allow pickling the classifier)?
The text was updated successfully, but these errors were encountered: