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
Hey,
The robustness library is pretty amazing. :)
I found a tiny error in your documentation for using robustness as a training library. (link)
The line 'store = store.Store(args.out_dir, args.exp_name)' overrides the name 'store'. This leads to an issue two lines later in 'schema = store.schema_from_dict(args_dict)' where the object store doesn't have a function called schema_from_dict but the library does.
Using cox.store.schema_from_dict fixes this issue.
Thanks
The text was updated successfully, but these errors were encountered:
Hey,
The robustness library is pretty amazing. :)
I found a tiny error in your documentation for using robustness as a training library. (link)
The line 'store = store.Store(args.out_dir, args.exp_name)' overrides the name 'store'. This leads to an issue two lines later in 'schema = store.schema_from_dict(args_dict)' where the object store doesn't have a function called schema_from_dict but the library does.
Using cox.store.schema_from_dict fixes this issue.
Thanks
The text was updated successfully, but these errors were encountered: