You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can directly create dataloader_1 and _2 by coping the shared parts, but since the dataloader config is quite lengthy (40+lines), this results in a lot of duplications. Is there a way to create a shared config dataloader, and have _1 and _2 inherit it and only override the value load_image?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Hydra experts!
I have a config that set arguments for a dataloader
In my final config, I would have two dataloaders share very similar arguments except the value of
load_image
, one is true and another is false, i.e.,I can directly create dataloader_1 and _2 by coping the shared parts, but since the dataloader config is quite lengthy (40+lines), this results in a lot of duplications. Is there a way to create a shared config
dataloader
, and have_1
and_2
inherit it and only override the valueload_image
?Beta Was this translation helpful? Give feedback.
All reactions