From c442e64ed1bb29181bd7ae63646a3e0336792a51 Mon Sep 17 00:00:00 2001 From: Mathurn Videau <mathurin.videau@epfedu.fr> Date: Wed, 29 Sep 2021 22:16:13 +0200 Subject: [PATCH] fix --- conf/conf_gpUCB_3.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/conf/conf_gpUCB_3.yml b/conf/conf_gpUCB_3.yml index 7828479..190252c 100644 --- a/conf/conf_gpUCB_3.yml +++ b/conf/conf_gpUCB_3.yml @@ -2,17 +2,17 @@ algorithm: name: algo.eaMuPlusLambdaUCB args: mu: 100 - lambda_: 100 - simulation_budget: 5 + lambda_: 500 + simulation_budget: 25 parallel_update: 16 save_every: 10 - ngen: 200 + ngen: 100 cxpb: 0.1 mutpb: 0.9 - budget_scheduler: [[50, 50], [100, 200], [190, 500]] + budget_scheduler: [[25, 50], [50, 200], [90, 500]] population: - init_size: 100 + init_size: 5000 selection: name: selNSGA2 @@ -21,12 +21,13 @@ selection: individual: Tree params: - env: "CartPole-v1" + env: "MountainCarContinuous-v0" function_set: small c: 0.0 n_episodes: 1 n_steps: 500 gamma: 1.0 n_thread: 16 + max_tree_size: 4 seed: 42 -- GitLab