We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input:
# dataset/imagenet.yaml type: "ImageNetDataset" path: "/datasets/imagenet"
# example.yaml defaults: - dataset/imagenet - _self_ dataset: type: "Overriden"
Output (as expected):
dataset: type: 'Overriden' path: '/datasets/imagenet'
However, if we change example.yaml to:
example.yaml
# example.yaml defaults: - dataset/imagenet - _self_ dataset:
Output (unexpected, but correct):
dataset: null
The intuitive expected output would have been:
dataset: type: 'ImageNetDataset' path: '/datasets/imagenet'
See above.
When overriding existing dicts with a single null value, hydra could perhaps produce a warning.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🐛 Bug
Description
Input:
Output (as expected):
However, if we change
example.yaml
to:Output (unexpected, but correct):
The intuitive expected output would have been:
Checklist
To reproduce
See above.
Expected Behavior
When overriding existing dicts with a single null value, hydra could perhaps produce a warning.
System information
Additional context
The text was updated successfully, but these errors were encountered: