Why does Monte Carlo Tree Search reset Tree

后端 未结 2 1075
傲寒
傲寒 2021-02-15 18:28

I had a small but potentially stupid question about Monte Carlo Tree Search. I understand most of it but have been looking at some implementations and noticed that after the MCT

2条回答
  •  清酒与你
    2021-02-15 19:09

    Some implementations do indeed retain the information.

    For example, the AlphaGo Zero paper says:

    The search tree is reused at subsequent time-steps: the child node corresponding to the played action becomes the new root node; the subtree below this child is retained along with all its statistics, while the remainder of the tree is discarded

提交回复
热议问题