Description Usage Arguments Value References See Also
View source: R/experienceReplay.R
Performs experience replay. Experience replay allows reinforcement learning agents to remember and reuse experiences from the past. The algorithm requires input data in the form of sample sequences consisting of states, actions and rewards. The result of the learning process is a state-action table Q that allows one to infer the best possible action in each state.
1 | replayExperience(D, Q, control, ...)
|
D |
A |
Q |
Existing state-action table of type |
control |
Control parameters defining the behavior of the agent. |
... |
Additional parameters passed to function. |
Returns an object of class hash
that contains the learned Q-table.
Lin (1992). "Self-Improving Reactive Agents Based on Reinforcement Learning, Planning and Teaching", Machine Learning (8:3), pp. 293–321.
Watkins (1992). "Q-learning". Machine Learning (8:3), pp. 279–292.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.