We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I was trying to fix the examples Pong and Pong2, but it seems there are some deeper issues. Maybe you can help here: https://github.com/bowen-xu/PyNARS/pull/107
Please note that the atariari interface changed and I had to fix the wrappers:
1) site-packages/atariari/benchmark/wrapper.py #observation, reward, done, info = self.env.step(action) #return observation, reward, done, self.info(info) observation, reward, done, truncated, info = self.env.step(action) return observation, reward, done, truncated, self.info(info) 2) site-packages/gym/wrappers/order_enforcing.py #observation, reward, done, info = self.env.step(action) #return observation, reward, done, info return self.env.step(action)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I was trying to fix the examples Pong and Pong2, but it seems there are some deeper issues.
Maybe you can help here:
https://github.com/bowen-xu/PyNARS/pull/107
Please note that the atariari interface changed and I had to fix the wrappers:
The text was updated successfully, but these errors were encountered: