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
This setup attempts to provide some default configuration for an experiment given some setting. You can imagine if setting=parameter1, the experiment should include some specific config items. And if you're running the same experiment with setting=parameter2, a different set of config values should be used.
** Stack trace/error message ** hydra.errors.MissingConfigException: In 'experiment/default': Could not load 'experiment/experiment/parameter1'.
Expected Behavior
I expect ${setting} to resolve to experiment/parameter1, but there are instead two "experiment" folders prepended to the path
🐛 Bug
Description
A defaults list one level down that points to another defaults list with interpolation is prepending the path with group name too many times.
Checklist
To reproduce
files:
default_config.yaml
experiment/exp1.yaml
experiment/default.yaml
This setup attempts to provide some default configuration for an experiment given some setting. You can imagine if setting=parameter1, the experiment should include some specific config items. And if you're running the same experiment with setting=parameter2, a different set of config values should be used.
** Stack trace/error message **
hydra.errors.MissingConfigException: In 'experiment/default': Could not load 'experiment/experiment/parameter1'.
Expected Behavior
I expect
${setting}
to resolve toexperiment/parameter1
, but there are instead two "experiment" folders prepended to the pathSystem information
Additional context
Did some digging, it looks like the path for the node is getting prepended at interpolation resolution and then again prepended when calling
get_config_path()
before attempting to load the configThe text was updated successfully, but these errors were encountered: