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
Just stumbled upon your work yesterday, it provides a very nice starting point for my DQN experiments with SUMO.
A small suggestion (if you care about maintaining this project) would be to use a collections.deque data structure for your memory samples. By specifying a size_max on instantiation, you don't have to manually pop old observations from your memory DB.
The text was updated successfully, but these errors were encountered:
Hi,
Just stumbled upon your work yesterday, it provides a very nice starting point for my DQN experiments with SUMO.
A small suggestion (if you care about maintaining this project) would be to use a
collections.deque
data structure for your memory samples. By specifying asize_max
on instantiation, you don't have to manually pop old observations from your memory DB.The text was updated successfully, but these errors were encountered: