Skip to content
Advertisement

Tag: omegaconf

Hydra combine lists in config

Say I have the following hydra config test.yaml: is it possible to merge list1 and list2 into a new list that contains [0,1,2,3], perhaps using variable interpolation? Here is the hydra code: Attempt (failed): list3 gives [0,[1,2,3]] The reason I want this is because I have some lists of unknown length in other config files and want to merge them

Advertisement