2020-03-26 13:41:16 -07:00
|
|
|
from typing import Union
|
|
|
|
|
2020-04-01 09:43:21 +02:00
|
|
|
from ray.rllib.models.action_dist import ActionDistribution
|
2020-03-26 13:41:16 -07:00
|
|
|
from ray.rllib.utils.annotations import override
|
|
|
|
from ray.rllib.utils.exploration.exploration import Exploration
|
|
|
|
from ray.rllib.utils.framework import TensorType
|
|
|
|
|
|
|
|
|
|
|
|
class ThompsonSampling(Exploration):
|
|
|
|
@override(Exploration)
|
2022-01-29 18:41:57 -08:00
|
|
|
def get_exploration_action(
|
|
|
|
self,
|
|
|
|
action_distribution: ActionDistribution,
|
|
|
|
timestep: Union[int, TensorType],
|
|
|
|
explore: bool = True,
|
|
|
|
):
|
2020-03-26 13:41:16 -07:00
|
|
|
if self.framework == "torch":
|
2022-01-29 18:41:57 -08:00
|
|
|
return self._get_torch_exploration_action(action_distribution, explore)
|
2020-03-26 13:41:16 -07:00
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2020-04-01 09:43:21 +02:00
|
|
|
def _get_torch_exploration_action(self, action_dist, explore):
|
2020-03-26 13:41:16 -07:00
|
|
|
if explore:
|
2021-06-15 13:30:31 +02:00
|
|
|
return action_dist.inputs.argmax(dim=-1), None
|
2020-03-26 13:41:16 -07:00
|
|
|
else:
|
2020-04-01 09:43:21 +02:00
|
|
|
scores = self.model.predict(self.model.current_obs())
|
2021-06-15 13:30:31 +02:00
|
|
|
return scores.argmax(dim=-1), None
|