Source code for orion.executor.joblib_backend

import warnings

import joblib

from orion.executor.multiprocess_backend import PoolExecutor


[docs]class Joblib(PoolExecutor): def __init__(self, n_workers=-1, backend="loky", **config): warnings.warn( "Joblib is deprecated and will be removed in v0.4.0." "Use PoolExecutor instead.", DeprecationWarning, ) super(Joblib, self).__init__(n_workers=n_workers, backend=backend)