From ec48ef121af3bd7045751e4f6176b35b7da211c0 Mon Sep 17 00:00:00 2001 From: Olivier Teytaud <oteytaud@fb.com> Date: Wed, 22 Sep 2021 10:30:13 +0200 Subject: [PATCH] fix --- conf/conf_gpUCB_124.yml | 32 ++++++++++++++++++++++++++++++++ conf/conf_gpUCB_3.yml | 32 ++++++++++++++++++++++++++++++++ conf/conf_gpUCB_5678910.yml | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 conf/conf_gpUCB_124.yml create mode 100644 conf/conf_gpUCB_3.yml create mode 100644 conf/conf_gpUCB_5678910.yml diff --git a/conf/conf_gpUCB_124.yml b/conf/conf_gpUCB_124.yml new file mode 100644 index 0000000..a414c29 --- /dev/null +++ b/conf/conf_gpUCB_124.yml @@ -0,0 +1,32 @@ +algorithm: + name: algo.eaMuPlusLambdaUCB + args: + mu: 100 + lambda_: 100 + simulation_budget: 5 + parallel_update: 16 + save_every: 10 + ngen: 200 + cxpb: 0.1 + mutpb: 0.9 + budget_scheduler: [[50, 10], [100, 20], [190, 50]] + +population: + init_size: 100 + +selection: + name: selNSGA2 + args: + +individual: Tree + +params: + env: "CartPole-v1" + function_set: small + c: 0.0 + n_episodes: 1 + n_steps: 500 + gamma: 1.0 + n_thread: 16 + +seed: 42 \ No newline at end of file diff --git a/conf/conf_gpUCB_3.yml b/conf/conf_gpUCB_3.yml new file mode 100644 index 0000000..7828479 --- /dev/null +++ b/conf/conf_gpUCB_3.yml @@ -0,0 +1,32 @@ +algorithm: + name: algo.eaMuPlusLambdaUCB + args: + mu: 100 + lambda_: 100 + simulation_budget: 5 + parallel_update: 16 + save_every: 10 + ngen: 200 + cxpb: 0.1 + mutpb: 0.9 + budget_scheduler: [[50, 50], [100, 200], [190, 500]] + +population: + init_size: 100 + +selection: + name: selNSGA2 + args: + +individual: Tree + +params: + env: "CartPole-v1" + function_set: small + c: 0.0 + n_episodes: 1 + n_steps: 500 + gamma: 1.0 + n_thread: 16 + +seed: 42 diff --git a/conf/conf_gpUCB_5678910.yml b/conf/conf_gpUCB_5678910.yml new file mode 100644 index 0000000..f94e2af --- /dev/null +++ b/conf/conf_gpUCB_5678910.yml @@ -0,0 +1,32 @@ +algorithm: + name: algo.eaMuPlusLambdaUCB + args: + mu: 500 + lambda_: 500 + simulation_budget: 25 + parallel_update: 16 + save_every: 10 + ngen: 2000 + cxpb: 0.1 + mutpb: 0.9 + budget_scheduler: [[50, 50], [100, 100], [190, 250]] + +population: + init_size: 100 + +selection: + name: selNSGA2 + args: + +individual: Tree + +params: + env: "CartPole-v1" + function_set: small + c: 0.0 + n_episodes: 1 + n_steps: 500 + gamma: 1.0 + n_thread: 16 + +seed: 42 -- GitLab