-
-
Notifications
You must be signed in to change notification settings - Fork 815
Closed
Labels
Milestone
Description
🚀 Feature Request
Allow hydra to load multiple configurations in a single compositional block.
Motivation
For multitasking, one needs to load configurations for multiple datasets. Currently the way hydra is structure, I don't see a clear way of loading multiple configs in a single block.
Pitch
For e.g. let's say defaults look something like:
defaults:
- dataset:
- ???
and datasets folder is something like:
conf/
dataset/
vqa2.yaml
textvqa.yaml
If I run, python main.py dataset=vqa2,textvqa, I should get a final config object something like
dataset:
- vqa2: ...
- textvqa: ...
We have something like this already implemented in Pythia's configuration system which is very close to hydra.
Are you willing to open a pull request? No
Reactions are currently unavailable