Closed soskek closed 5 years ago
The script set 1e-2 as args.lr in argparse but didn't set its type (float). If we change from command line like --lr 5e-3, it is interpreted as str and error happens. This fixed it.
1e-2
args.lr
float
--lr 5e-3
str
/test
Successfully created a job for commit 7efb883:
LGTM
The script set
1e-2
asargs.lr
in argparse but didn't set its type (float
). If we change from command line like--lr 5e-3
, it is interpreted asstr
and error happens. This fixed it.