baselines icon indicating copy to clipboard operation
baselines copied to clipboard

A2C Colab Atari - ConnectionResetError: [Errno 104] Connection reset by peer

Open christophschuhmann opened this issue 5 years ago • 1 comments

When I try to run the colab example with the A2C algorithm on an Atari env, I get the following error:

`--------------------------------------------------------------------------- ConnectionResetError Traceback (most recent call last) in () ----> 1 env = make_atari_env('Boxing-v0', num_env=4, seed=0) 2 # Stack 4 frames 3 env = VecFrameStack(env, n_stack=4)

4 frames /usr/lib/python3.6/multiprocessing/connection.py in _recv(self, size, read) 377 remaining = size 378 while remaining > 0: --> 379 chunk = read(handle, remaining) 380 n = len(chunk) 381 if n == 0:

ConnectionResetError: [Errno 104] Connection reset by peer`

christophschuhmann avatar Jan 15 '20 09:01 christophschuhmann

Check your atari-py https://github.com/openai/atari-py#roms

Open-AGI avatar Dec 21 '21 12:12 Open-AGI