Skip to content
New issue

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

Implement VecEnv #44

Open
3 tasks
will-maclean opened this issue Jun 23, 2024 · 1 comment
Open
3 tasks

Implement VecEnv #44

will-maclean opened this issue Jun 23, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@will-maclean
Copy link
Owner

A strength of stable-baselines3 is its vector envs, which allow for multiple envs to be executed in parallel. Let's see if we can implement the same functionality.

https://github.com/DLR-RM/stable-baselines3/tree/master/stable_baselines3/common/vec_env

Components:

  • create trait
  • sub process vec env? (or just use threads??)
  • common wrappers
@will-maclean will-maclean added the enhancement New feature or request label Jun 23, 2024
@will-maclean
Copy link
Owner Author

May need to act a batch_act(&mut self, obs: Vec<O>) -> Vec<A> to the Agent trait.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant