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
env = pursuit_v3.env(max_cycles=500, x_size=16, y_size=16, local_ratio=1.0, n_evaders=5, n_pursuers=2,obs_range=7, n_catch=2, freeze_evaders=False, tag_reward=0.01, catch_reward=5.0, urgency_reward=0.0, surround=True, constraint_window=1.0)
if the joint action is [2,2], how can I step it? I tried env.step([2,2]), but return AssertionError: action is not in action space
env.step([2,2])
AssertionError: action is not in action space
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if the joint action is [2,2], how can I step it?
I tried
env.step([2,2])
, but returnAssertionError: action is not in action space
The text was updated successfully, but these errors were encountered: