I have 2 configs like, and I want to make inner config PARTLY inherit outer config. Thank you for your help!
this is the outer config:
# config.yaml
defaults:
- _self_
- model: pct
lr: 1e-3
num_epoch: 200
weight_decay: 5e-4
scheduler_stepsize: 50
batch_size: 16
this is the inner config:
# model/pct.yaml
file_name: pct
lr: 1e-4
And I want to override the outer config PARTLY, such as inherit 'lr':
# my expect output config
lr: 1e-4
model:
file_name: pct
...
I know there is '@here' keyword to make inner config be global, but I do not know how to make inner config PARTLY be global.