93a69f8
1
2
3
4
5
6
7
8
9
10
11
12
13
import abc from typing import Dict class BasePolicy(abc.ABC): @abc.abstractmethod def infer(self, obs: Dict) -> Dict: """Infer actions from observations.""" def reset(self) -> None: """Reset the policy to its initial state.""" pass