mechanism¶
Specifies the learning mechanism to use.
Syntax¶
mechanism = name
where name is one of the following:
alearning,ga, ora(A-learning (Guided associative learning))stimulusresponseorsr(Stimulus-response learning)expectedsarsaores(Expected SARSA)qlearningorql(Q-learning)actorcriticorac(Actor-critic)rescorlawagnerorrw(Rescorla-Wagner)
See The mechanisms for a description of the mechanisms.
Description¶
mechanism = name sets the learning mechanism to name.
Example¶
mechanism = sr
sets the learning mechanism to Stimulus-response learning. See The mechanisms.