WU-UCT icon indicating copy to clipboard operation
WU-UCT copied to clipboard

how to understand the function select_expand_action() in UCTnode.py ?

Open stcy07 opened this issue 1 year ago • 0 comments

in my opinion, the way choosing an action to expand is purely based on the prior probability or just random choice. So why there is a while loop? I don't quite understand the "if" condintions in the loop, especially this one:

if self.children_visit_count[action] > 0 and count < 10: count += 1 continue

stcy07 avatar May 20 '23 06:05 stcy07