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
cfg.merge_from_file("experiment.yaml")
If the YAML file has repeated "parent" tag, YACS only merges the final set of parameters. For example, only the second list of HYPER are merged.
HYPER: BATCH_SIZE: 10 SYS: SOME_CONSTANT: 3 HYPER: LEARNING_RATE: 1e-3
As a result, only LEARNING_RATE: 1e-3 is applied.
LEARNING_RATE: 1e-3
The text was updated successfully, but these errors were encountered:
This is a duplicate issue of #17
Sorry, something went wrong.
Closing (duplicate of #17).
No branches or pull requests
If the YAML file has repeated "parent" tag, YACS only merges the final set of parameters. For example, only the second list of HYPER are merged.
As a result, only
LEARNING_RATE: 1e-3
is applied.The text was updated successfully, but these errors were encountered: