You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the ParallelRLEnv class, I am having a doubt if the environment instances above the number set for n_show perform a function? Because in the class when you inherit from VecEnv of stable-baselines3 you set the num_envs to n_show. So an agent from SB3 will be able to interact only with those agents that are in n_show. Even in the step function of ParallelRLEnv, there is a check that the actions are given only for n_show envs.
So if n_maps is 20 and n_show is 12, is there any reason to have the extra 8 env instances since you can neither interact with them nor get observations from them.
The text was updated successfully, but these errors were encountered:
In the
ParallelRLEnv
class, I am having a doubt if the environment instances above the number set for n_show perform a function? Because in the class when you inherit from VecEnv of stable-baselines3 you set the num_envs to n_show. So an agent from SB3 will be able to interact only with those agents that are in n_show. Even in the step function of ParallelRLEnv, there is a check that the actions are given only for n_show envs.So if n_maps is 20 and n_show is 12, is there any reason to have the extra 8 env instances since you can neither interact with them nor get observations from them.
The text was updated successfully, but these errors were encountered: