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
I know it's not really supported, but params is more broken than it should be (on master):
julia> Flux.params([2,3])
ERROR: UndefVarError:`IdSet` not defined
julia>@eval Flux using Base: IdSet
julia> Flux.params([2,3])
Params([[2, 3]])
It should probably print friendly upgrade instructions, @warn "..." maxlog=1. People calling this are probably struggling to update old code, and we should help them along.
The text was updated successfully, but these errors were encountered:
I know it's not really supported, but
params
is more broken than it should be (on master):It should probably print friendly upgrade instructions,
@warn "..." maxlog=1
. People calling this are probably struggling to update old code, and we should help them along.The text was updated successfully, but these errors were encountered: