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
The error occurs in functions/LBFGS.py, line 854.
I think this error comes from t. It becomes a double precision number with the process of convergence.
I tried
if(F_new > F_k + (c1*t*gtd).float()):
or
if(F_new.double() > F_k.double() + (c1*t*gtd)):
However, if I do so, the loss will not decrease any more.
The text was updated successfully, but these errors were encountered:
The error occurs in functions/LBFGS.py, line 854.
I think this error comes from t. It becomes a double precision number with the process of convergence.
I tried
or
However, if I do so, the loss will not decrease any more.
The text was updated successfully, but these errors were encountered: