Replies: 2 comments 3 replies
-
Managed to sort it out. Required the full path as:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
For yaml files in the same directory, should be able to use just # experiments/project/dev
defaults:
- base # experiments/project/prod
defaults:
- dev |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using hydra where I have my ML experiments organised by projects as follows:
Now, say the base has something as follows:
Now, this works
However, now if I try and do something like this and "inherit" from the
dev
config as:This runs into
Could not load 'experiments/project/project/base
. So it seems that the paths are not being extrapolated as desired due to this directory nesting. I tried it without the_here_
clause but runs into the same issue.So, at the moment I can only inheit from the
base
config and none of the derived configs. I can work around it by flattening the directories but it would be nice to organise the configs by projects and customers.Beta Was this translation helpful? Give feedback.
All reactions