From bc3cb03a7dcc6f59b60a70c25ac24a4def1ba22d Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 8 Feb 2009 23:20:31 +0100 Subject: [PATCH] UCB1AMAF: Change default explore_p from 0.2 to 0.1 --- uct/policy/ucb1amaf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uct/policy/ucb1amaf.c b/uct/policy/ucb1amaf.c index 07c9156..4694cb7 100644 --- a/uct/policy/ucb1amaf.c +++ b/uct/policy/ucb1amaf.c @@ -322,7 +322,8 @@ policy_ucb1amaf_init(struct uct *u, char *arg) p->update = ucb1amaf_update; p->wants_amaf = true; - b->explore_p = 0.2; + // RAVE: 0.2vs0: 40% (+-7.3) 0.1vs0: 54.7% (+-3.5) + b->explore_p = 0.1; b->explore_p_rave = -1; b->equiv_rave = 3000; b->fpu = INFINITY; -- 2.11.4.GIT