Provides a Joblib-based launcher for Hydra applications, enabling parallel execution of joblib tasks (e.g., using loky or threading backend). Current version 1.2.0 is compatible with Hydra 1.1 and 1.2. Low release cadence; last updated 2021.
pip install hydra-joblib-launcherVerified import paths — ran on the pinned version, not inferred.
Example Hydra app using joblib launcher (launcher config set in YAML).
Stay on hydra-core<1.3 or use the built-in Hydra joblib launcher (experimental) from Hydra 1.3.
Add `hydra.joblib: {backend: 'loky', n_jobs: 4}` to your config.Configure n_jobs in the config YAML, not at runtime.
Use `from hydra_plugins.hydra_joblib_launcher.joblib_launcher import JoblibLauncher`.
Add `- joblib` to your defaults list or set `hydra.joblib.backend: loky` in your config.
Ensure your config includes `hydra.joblib.backend` and `hydra.joblib.n_jobs`.