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
In line 179, shouldn't it be: grads = clipped_grads
instead of clipped_grads = grads
?
The text was updated successfully, but these errors were encountered:
Giullar
changed the title
Possible bug in gradient clipping of deepq_learner
Possible bug in gradient clipping of deepq_learner (tf2 branch)
Nov 10, 2022
yes, I think you are right. It should be grads = clipped_grads, as it is the list containing the gradients after clipping, which should be used for optimization.
baselines/baselines/deepq/deepq_learner.py
Lines 174 to 181 in b99a73a
In line 179, shouldn't it be:
grads = clipped_grads
instead of
clipped_grads = grads
?
The text was updated successfully, but these errors were encountered: