View source: R/experience_replay.R
makeReplayMemory | R Documentation |
Create replay memory for experience replay.
makeReplayMemory(size = 100L, batch.size = 16L)
size |
[ |
batch.size |
[ |
Sampling from replay memory will be uniform.
[list(size, batch.size)
]
This list can then be passed onto makeAgent, which will construct the
replay memory accordingly.
memory = makeReplayMemory(size = 100L, batch.size = 16L)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.