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
Hi, there is a small bug/oversight when using Hydra's dynamically interploated configurations. This issue is particularly in regards to the tags list in the experiment.yaml, for example.
tags:
- "mnist"
- "simple_dense_net"
- ${task_name} # should be dynamically interpolated
- batch_size_${data.batch_size} # should also be dynamically interpolatedseed: 12345trainer:
min_epochs: 10max_epochs: 10gradient_clip_val: 0.5
...
...
logger:
wandb:
tags: ${tags}group: "mnist"aim:
experiment: "mnist"
The tags list gets correctly resolved when Wandb configs are resolved but the tags them selves are not dynamically resolved when the config tree is printed:
Hi, there is a small bug/oversight when using Hydra's dynamically interploated configurations. This issue is particularly in regards to the
tags
list in theexperiment.yaml
, for example.The
tags
list gets correctly resolved when Wandb configs are resolved but the tags them selves are not dynamically resolved when the config tree is printed:The text was updated successfully, but these errors were encountered: