I would like to set a structured config as a default node value for some entry. I am not sure how to accomplish this. I have tried the following:
defaults:
- trainer: /trainer_lib/trainer/base_trainer"
where /trainer_lib/trainer/base_trainer
has been added to the ConfigStore in my script.
The only way I've been able to initialize this correctly is via
defaults:
- trainer: some_trainer
and in trainer/some_trainer.yaml
write as default value /trainer_lib/trainer/base_trainer@_here_
.
Is there an approach where I can skip creating trainer/some_trainer.yaml
file? Thank you.