mlpy.planners.explorers.discrete.DiscreteExplorer.choose_action

DiscreteExplorer.choose_action(actions, qvalues)[source]

Choose the next action according to the exploration strategy.

Parameters:

actions : list[Actions]

The available actions.

qvalues : list[float]

The q-value for each action.

Returns:

Action :

The action with maximum q-value that can be taken from the given state.