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
Have been getting this error as well, it stems from the Python 2.x/Python 3.x incompatibility. They need to fully update it to support Python 3.x. In the meantime, view the Pull Requests and see if one of the files someone uploaded there work.
generator.next() is not available in 3.x, you must either use self.generator.__next()__ (not recommended), or next(self.generator) (recommended). See here for more info.
DQN example as well as random data generator example are giving this error.
69 """
70 try:
---> 71 return self.generator.next()
72 except StopIteration as e:
73 self._iterator_end()
AttributeError: 'generator' object has no attribute 'next'
The text was updated successfully, but these errors were encountered: