The most important thing in the paper is how to combine RAVE(AMAF)
information with normal UCT. Like this:
uct_value = child->GetUctValue();
rave_value = child->GetRaveValue();
beta = sqrt(K / (3 * node->visits + K));
uct_rave = beta * rave_value + (1 - beta) * uct_value;
Thanks for the translation. The only point I am still missing: What is
RAVE(AMAF)?
Chrilly
_______________________________________________
computer-go mailing list
computer-go@computer-go.org
http://www.computer-go.org/mailman/listinfo/computer-go/