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
When using the InitialPrevious routine from LineSearches.jl, an optional parameter alpha can be given. However, when running the routine, this alpha is only used if state.alpha is NaN. Since the initialization of state.alpha sets it to 1, this optional parameter cannot be used as an initial guess for the InitialPrevious routine.
To me, it makes more sense that the input parameter would be the first alpha guess to be used. Is this behavior intended? If so, I can just redefine my own step size procedure.
The text was updated successfully, but these errors were encountered:
When using the
InitialPrevious
routine fromLineSearches.jl
, an optional parameteralpha
can be given. However, when running the routine, thisalpha
is only used ifstate.alpha
isNaN
. Since the initialization ofstate.alpha
sets it to 1, this optional parameter cannot be used as an initial guess for theInitialPrevious
routine.To me, it makes more sense that the input parameter would be the first
alpha
guess to be used. Is this behavior intended? If so, I can just redefine my own step size procedure.The text was updated successfully, but these errors were encountered: