Click or drag to resize
Accord.NET (logo)

EpsilonGreedyExplorationChooseAction Method

Choose an action.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public int ChooseAction(
	double[] actionEstimates
)
Request Example View Source

Parameters

actionEstimates
Type: SystemDouble
Action estimates.

Return Value

Type: Int32
Returns selected action.

Implements

IExplorationPolicyChooseAction(Double)
Remarks
The method chooses an action depending on the provided estimates. The estimates can be any sort of estimate, which values usefulness of the action (expected summary reward, discounted reward, etc).
See Also