mlpy.planners.explorers.IExplorer¶
-
class
mlpy.planners.explorers.IExplorer[source]¶ Bases:
objectThe explorer interface class.
The explorer class executes the exploration policy.
Notes
All explorers should derive from this class.
Methods
activate()Turn on exploration mode. choose_action(*args, **kwargs)Choose the next action according to the exploration strategy. deactivate()Turn off exploration mode.