|
QLearning Constructor (Int32, Int32, IExplorationPolicy)
|
Initializes a new instance of the
QLearning class.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public QLearning(
int states,
int actions,
IExplorationPolicy explorationPolicy
)
Public Sub New (
states As Integer,
actions As Integer,
explorationPolicy As IExplorationPolicy
)
Request Example
View SourceParameters
- states
- Type: SystemInt32
Amount of possible states. - actions
- Type: SystemInt32
Amount of possible actions. - explorationPolicy
- Type: Accord.MachineLearningIExplorationPolicy
Exploration policy.
Remarks Action estimates are randomized in the case of this constructor
is used.
See Also