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
Update: Using the env variable does not work because even that goes through yaml.load. Moreover, even when the values are not specified in 1e.. notation in the sweep config. The wandb server always sends values in 1e... format when there are more than 5 decimal places. So the only way forward is fixing the yaml load or using json.loads.
Uh oh!
There was an error while loading. Please reload this page.
wandb-allennlp/wandb_allennlp/allennlp_translator.py
Line 120 in d36d287
For example, a value
1e-5
will be parsed as a string "1e-5" instead of a float.Possible solutions:
How to by-pass the issue without fixing?
Use environment variable to get the value to the jsonnet instead of command line override.
Ref: https://stackoverflow.com/questions/30458977/yaml-loads-5e-6-as-string-and-not-a-number
The text was updated successfully, but these errors were encountered: