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
This is due to the features method on the RegressionTrainer class/subclasses. For the NonParameterRegressorTrainer, the features method is passed into the NonParametricRegressorhere, which is a bound method. This can't be pickled. Therefore, we need to break that dependency and make that features method a separate function or a Callable.
The text was updated successfully, but these errors were encountered:
This is due to the features method on the
RegressionTrainer
class/subclasses. For theNonParameterRegressorTrainer
, the features method is passed into theNonParametricRegressor
here, which is a bound method. This can't be pickled. Therefore, we need to break that dependency and make that features method a separate function or a Callable.The text was updated successfully, but these errors were encountered: