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
Consider the following code, written on a Jupyter notebook:
using ArgParse
function parse_commandline()
s = ArgParseSettings()
@add_arg_table s begin
"arg1"
help = "learning rate"
default = 0.001
"arg2"
help = "minibatch size for dataloader"
default = 1
"arg3"
help = "number of epochs"
default = 10
end
return parse_args(ARGS, s)
end
parsed_args = parse_commandline()
When executed correctly, it gives the following reply:
I don't think we should close this, someone may still experience the problem and figure out what's going wrong.
That is, unless the issue got magically solved by upgrades in Julia. @cirobr is the problem still present with the latest Julia version?
Consider the following code, written on a Jupyter notebook:
When executed correctly, it gives the following reply:
I have two computers running latest Ubuntu 20.04 and Julia 1.6.7, presenting very adverse results:
Whenever failure occurs, output is as follows:
Despite extensive effort, could not find the cause and fix it.
Any advise is appreciated. Thanks.
The text was updated successfully, but these errors were encountered: