e.g. Hier möchte ich die Konfigurationsgruppenoption von DataModule/Wikipedia1M.YAML aus Variante/Standard.yaml laden, aber es gibt nicht das, was ich erwartet habe.
Code: Select all
conf
├── config.yaml
├── datamodule
│ ├── dummy.yaml
│ └── wikipedia1m.yaml
├── task
│ ├── concat_t5_base.yaml
│ ├── concat.yaml
└── variant
└── default.yaml
< /code>
config.yaml
Code: Select all
defaults:
- variant: default
- _self_
< /code>
variant/default.yaml
# @package _global_
task: concat_t5_base
datamodule: wikipedia1m
< /code>
resultierende Konfiguration < /strong>: < /p>
task: concat_t5_base
datamodule: wikipedia1m
< /code>
Expected config:
task:
_target_: xxx
model_name: t5-base
shuffle_labels: true
datamodule:
_target_: xxx
num_workers: 4
batch_size: 8
< /code>
Any idea on how to achieve the expected behaviour?