A Hydra sweeper for running explicit parameter combinations without Cartesian product.
pip install hydra-sweeper-explicithydra:
sweeper:
_target_: hydra_sweeper_explicit.ExplicitSweeper
combinations:
- {model: small, lr: 0.01}
- {model: large, lr: 0.001}
- {model: large, lr: 0.0001, dropout: 0.5}python train.py --multirunRuns exactly 3 jobs—no Cartesian product.