-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ghstack-source-id: 7ee601a3fb990db519cd33906ecba54dd1695676 Pull Request resolved: #2358
- Loading branch information
Showing
2 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
from .scores import PUCTScore, UCBScore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
from __future__ import annotations | ||
|
||
import functools | ||
import math | ||
from abc import abstractmethod | ||
from enum import Enum | ||
|
||
from tensordict import NestedKey, TensorDictBase | ||
from tensordict.nn import TensorDictModuleBase | ||
from torch import nn | ||
|
||
|
||
class MCTSScore(TensorDictModuleBase): | ||
@abstractmethod | ||
def forward(self, node): | ||
pass | ||
|
||
|
||
class PUCTScore(MCTSScore): | ||
c: float | ||
|
||
def __init__( | ||
self, | ||
*, | ||
c: float, | ||
win_count_key: NestedKey = "win_count", | ||
visits_key: NestedKey = "visits", | ||
total_visits_key: NestedKey = "total_visits", | ||
prior_prob_key: NestedKey = "prior_prob", | ||
score_key: NestedKey = "score", | ||
): | ||
super().__init__() | ||
self.c = c | ||
self.win_count_key = win_count_key | ||
self.visits_key = visits_key | ||
self.total_visits_key = total_visits_key | ||
self.prior_prob_key = prior_prob_key | ||
self.score_key = score_key | ||
self.in_keys = [ | ||
self.win_count_key, | ||
self.prior_prob_key, | ||
self.total_visits_key, | ||
self.visits_key, | ||
] | ||
self.out_keys = [self.score_key] | ||
|
||
def forward(self, node: TensorDictBase) -> TensorDictBase: | ||
win_count = node.get(self.win_count_key) | ||
visits = node.get(self.visits_key) | ||
n_total = node.get(self.total_visits_key) | ||
prior_prob = node.get(self.prior_prob_key) | ||
node.set( | ||
self.score_key, | ||
(win_count / visits) + self.c * prior_prob * n_total.sqrt() / (1 + visits), | ||
) | ||
return node | ||
|
||
|
||
class UCBScore(MCTSScore): | ||
c: float | ||
|
||
def __init__( | ||
self, | ||
*, | ||
c: float, | ||
win_count_key: NestedKey = "win_count", | ||
visits_key: NestedKey = "visits", | ||
total_visits_key: NestedKey = "total_visits", | ||
score_key: NestedKey = "score", | ||
): | ||
super().__init__() | ||
self.c = c | ||
self.win_count_key = win_count_key | ||
self.visits_key = visits_key | ||
self.total_visits_key = total_visits_key | ||
self.score_key = score_key | ||
self.in_keys = [self.win_count_key, self.total_visits_key, self.visits_key] | ||
self.out_keys = [self.score_key] | ||
|
||
def forward(self, node: TensorDictBase) -> TensorDictBase: | ||
win_count = node.get(self.win_count_key) | ||
visits = node.get(self.visits_key) | ||
n_total = node.get(self.total_visits_key) | ||
node.set( | ||
self.score_key, | ||
(win_count / visits) + self.c * n_total.sqrt() / (1 + visits), | ||
) | ||
return node | ||
|
||
|
||
class MCTSScores(Enum): | ||
PUCT = functools.partial(PUCTScore, c=5) # AlphaGo default value | ||
UCB = functools.partial(UCBScore, c=math.sqrt(2)) # default from Auer et al. 2002 | ||
UCB1_TUNED = "UCB1-Tuned" | ||
EXP3 = "EXP3" | ||
PUCT_VARIANT = "PUCT-Variant" |