CILabTaegwan
CILabTaegwan
Thank you for the quick handling of the issue! Additionally, is it possible to set LOAD LOAD on the trainer? This process is included in LOAD PPO setting, but I...
Thanks a lot. It worked with below code in overcookedtraining.py: env = gym.make('OvercookedMultiEnv-v0', layout_name=layout) agentarg = {} partner = OnPolicyAgent(PPO.load("file_dir_1"), **agentarg) env.add_partner_agent(partner) ego = PPO.load("file_dir_2") vec_env = DummyVecEnv([lambda: Monitor(env)]) ego.set_env(vec_env)...
Thanks for your previous apply, and I got one more question about Logger output( "rollout/ep_len_mean", "time/fps", "train/loss", ...etc.) when running the trainer.py. While running trainer.py, the outputs of the logger...