My config files structure:
config
├── train_dataset
│ ├── adobe5k.yaml
│ ├── my_train_data1.yaml
│ └── cifar10.yaml
├── valid_dataset
│ ├── adobe5k.yaml
│ └── cifar10.yaml
└── config.yaml
And my config.yaml
is:
# other configs
...
defaults:
- train_dataset: adobe5k
- valid_dataset: adobe5k
As you see, I have 2 fields named valid_dataset
and train_dataset
in my config, whose value is selected from its own config group. What should I do to make values of the two fields selected from the same group?