Contents:
from abc import abstractmethod from gridmind.policies.base_policy import BasePolicy [docs]class BaseSoftPolicy(BasePolicy): @abstractmethod [docs] def get_action_deterministic(self, state): raise NotImplementedError("This method must be overridden")