selectRandomAction {ReinforcementLearning}R Documentation

Performs random action selection

Description

Performs random action selection. In this strategy, the agent always selects an action at random.

Usage

selectRandomAction(Q, state, epsilon)

Arguments

Q

State-action table of type hash.

state

The current state.

epsilon

Exploration rate between 0 and 1 (not used).

Value

Character value defining the next action.


[Package ReinforcementLearning version 1.0.5 Index]