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
Describe the bug The deprecation warning raised here when using a config with the following content:
algorithms: random: seed: null
suggests to change the config to the following:
experiment: algorithms: {'random': {'seed': None}}
The None should be null in yaml/json files.
None
null
Expected behavior The deprecation warning should show null (proper yaml syntax).
Steps to reproduce See the example config in the bug description above
Environment (please complete the following information):
Possible solution See PR #391
Instead of calling repr(backward_value) use yaml.dump(backward_value) here
The text was updated successfully, but these errors were encountered:
Thank you for reporting this bug! We'll take a look at your solution as soon as possible!
Thanks again!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
The deprecation warning raised here when using a config with the following content:
suggests to change the config to the following:
The
None
should benull
in yaml/json files.Expected behavior
The deprecation warning should show
null
(proper yaml syntax).Steps to reproduce
See the example config in the bug description above
Environment (please complete the following information):
Possible solution
See PR #391
Instead of calling repr(backward_value) use yaml.dump(backward_value) here
The text was updated successfully, but these errors were encountered: