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 was working on getting Optimisers to work with reactant, and it (mostly) does, but one of the current issues is that eta is forced to be Float64 in some of the structs.
The learning rate and the other parameters get embedded into the IR as constants. So even if we do an adjust of the learning rate, it will still be using the old learning rate
The text was updated successfully, but these errors were encountered:
I was working on getting Optimisers to work with reactant, and it (mostly) does, but one of the current issues is that
eta
is forced to be Float64 in some of the structs.But consider the following IR:
While this looks correct, if you take a closer look:
The learning rate and the other parameters get embedded into the IR as constants. So even if we do an
adjust
of the learning rate, it will still be using the old learning rateThe text was updated successfully, but these errors were encountered: