Source code for maro.rl.exploration.abs_explorer

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

from abc import ABC, abstractmethod


[docs]class AbsExplorer(ABC): """Abstract explorer class for generating exploration rates. """ def __init__(self): pass
[docs] @abstractmethod def set_parameters(self, **exploration_params): return NotImplementedError
@abstractmethod def __call__(self, action): return NotImplementedError