higgsfield / RL-Adventure

Pytorch Implementation of DQN / DDQN / Prioritized replay/ noisy networks/ distributional values/ Rainbow/ hierarchical RL
2.99k stars 587 forks source link

fixed: zip is not subscriptable #33

Open partha117 opened 2 years ago

partha117 commented 2 years ago

In python3 zip is not subscriptable. However, in the next line, there is an attempt to subscript. Thus, the zip object has been wrapped in the list so that it can be subscriptable.