atari
atari copied to clipboard
AI research environment for the Atari 2600 games 🤖.
@gsurma when i run it without rendering it run's fine but when i enable rendering it gives me this error Traceback (most recent call last): File "atari.py", line 100, in...
I am not able to render the Atari games env on google collaboratory. Any specific reasons why it doesn't support it? I am able to run it on jupyter notebook...
` if clip: np.sign(reward)` this operation can not change the value of reward, and it should be ` if clip: reward = np.sign(reward)` Maybe it's the problem of the NumPy...
I am trying to re-use the code for implementing a a regular DQN. So could you guide me what updates needs to be done for the same?? Thanks
while i ran `python atari.py --help` raise exception like this: ``` ModuleNotFoundError: No module named 'atari_py' ```
I have write os.environ["CUDA_VISIBLE_DEVICES"] = "0" in atari.py, but it doesn't work, help me plz
I am running this project into my ubuntu VM with tensorflow CPU version available. Getting following error. Can you please help me on this? HOw i can run this into...
Hi @gsurma, Thank you for the wonderful code and the medium article. I tried implementing your code but found that the loss function in my model shoots off after some...
Hello @gsurma "atari.py" file is importing atari_py where apparently all the games it can be trained on is listed. Can you please share that file as well? Plus one more...
Hi @gsurma, Thanks for sharing the code, great work there. I was try to recreate the Breakout model by running the training step. However, even after 7000 runs there seems...