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 noticed that in main_crnn.py, line 167 : validate_err += err
as err is a Varaible on GPU, such usage will take extra GPU memory (with PyTorch 1.0.1), maybe you should use err.item() instead like line 147.
line 188 has the same problem as well
The text was updated successfully, but these errors were encountered:
I noticed that in
main_crnn.py
, line 167 :validate_err += err
as
err
is a Varaible on GPU, such usage will take extra GPU memory (with PyTorch 1.0.1), maybe you should useerr.item()
instead like line 147.line 188 has the same problem as well
The text was updated successfully, but these errors were encountered: