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 wanted to verify something I found in your code. In the method MADDPGAgentTrainer.update() there is a comment next to the following line stating that an update is only allowed to occur every 100 steps:
if not t % 100 == 0: # only update every 100 steps
return
I could be misreading this, but doesn't this line mean that an update will occur every step but skip over steps when t_step%100==0?
The text was updated successfully, but these errors were encountered:
Since we have "if not t % 100 ==0: return", this return statement will be executed for all steps except for every 100th step. Therefore only every 100th step, the rest of the update function will be evaluated (hence every 100 steps the update is performed).
Hello,
I wanted to verify something I found in your code. In the method
MADDPGAgentTrainer.update()
there is a comment next to the following line stating that an update is only allowed to occur every 100 steps: I could be misreading this, but doesn't this line mean that an update will occur every step but skip over steps when
t_step%100==0
?The text was updated successfully, but these errors were encountered: