Roulette wheel exploration policy.
Namespace:
AForge.MachineLearningAssembly: AForge.MachineLearning (in AForge.MachineLearning.dll) Version: 2.2.4.0 (2.2.4.0)
Syntax
C# |
---|
public class RouletteWheelExploration : IExplorationPolicy |
Remarks
The class implements roulette whell exploration policy. Acording to the policy, action a at state s is selected with the next probability:

Q( s, a ) p( s, a ) = ------------------ SUM( Q( s, b ) ) b
where Q(s, a) is action's a estimation (usefulness) at state s.
