Skip to content
Snippets Groups Projects
Commit aae6d260 authored by Egli Adrian (IT-SCI-API-PFI)'s avatar Egli Adrian (IT-SCI-API-PFI)
Browse files

number of agents (fixed or 1..)

parent 409a87d4
No related branches found
No related tags found
No related merge requests found
...@@ -510,7 +510,7 @@ def eval_policy(env, tree_observation, policy, train_params, obs_params): ...@@ -510,7 +510,7 @@ def eval_policy(env, tree_observation, policy, train_params, obs_params):
if __name__ == "__main__": if __name__ == "__main__":
parser = ArgumentParser() parser = ArgumentParser()
parser.add_argument("-n", "--n_episodes", help="number of episodes to run", default=5000, type=int) parser.add_argument("-n", "--n_episodes", help="number of episodes to run", default=5000, type=int)
parser.add_argument("--n_agent_fixed", help="hold the number of agent fixed", default=False, type=bool) parser.add_argument("--n_agent_fixed", help="hold the number of agent fixed", action='store_true')
parser.add_argument("-t", "--training_env_config", help="training config id (eg 0 for Test_0)", default=1, parser.add_argument("-t", "--training_env_config", help="training config id (eg 0 for Test_0)", default=1,
type=int) type=int)
parser.add_argument("-e", "--evaluation_env_config", help="evaluation config id (eg 0 for Test_0)", default=1, parser.add_argument("-e", "--evaluation_env_config", help="evaluation config id (eg 0 for Test_0)", default=1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment