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
null is standard yaml syntax, the equivalent of python's None. Therefore using it to specifiy missing values in a training config should work, but it leads to an error. I'm not sure why exactly, but its related to the way saving yamls is handled in mle-hyperopt, more specifically in save_yaml in mle_hyperopt/helpers/utils.py. At the point where the file is evaluated as
null
is standard yaml syntax, the equivalent of python'sNone
. Therefore using it to specifiy missing values in a training config should work, but it leads to an error. I'm not sure why exactly, but its related to the way saving yamls is handled in mle-hyperopt, more specifically insave_yaml in mle_hyperopt/helpers/utils.py
. At the point where the file is evaluated asthe
data
variable containsnull
without quotes, which cannot be parsed (its also not a variable).The text was updated successfully, but these errors were encountered: