Closed darshanhegde closed 8 years ago
I run your code on my MacBookPro and it worked.
my env is gym version 0.1.3 installed with anaconda pip + git
Thanks. That is really strange ! I was running this inside a docker container, if I run on my local machine (Ubuntu 14.04) with 0.1.3 gym version, it actually works !
Did you every resolve this when using the docker container?
I have implemented synchronous parallel DQN, and wanted to test it on classic control environments. I want to test it on rgb_array observation space that are images instead of Box(n,) (joint angles etc. ), but my algorithm requires that I implement a parallel version of the classic environments (k such environments) which takes list of k actions and returns k (observation, reward, done, info) tuples and I'm using env.render() method to get the rgb_array observation that I need. My implementation looks something like this -
Here is the error it throws -
Can someone suggest a better way of doing this ?