Create replay memory for experience replay.
makeReplayMemory(size = 100L, batch.size = 16L)
size | [ |
---|---|
batch.size | [ |
[list(size, batch.size)
]
This list can then be passed onto makeAgent, which will construct the
replay memory accordingly.
Sampling from replay memory will be uniform.
memory = makeReplayMemory(size = 100L, batch.size = 16L)