-
Hello, Thank you for providing such a well-documented and easy-to-follow RL framework! I have a quick question regarding terminology: is there a specific reason why the replay buffers are referred to as "memories" in the code? From my understanding, the term "replay buffer" is more commonly used in the literature. I’d appreciate any clarification on this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Jendker
Depending on the agent, the memory can be used as:
|
Beta Was this translation helpful? Give feedback.
Hi @Jendker
skrl
implemnents a generic memory definition that are not tied to the agent implementation and can be used for any role, such as rollout or replay buffers. Theskrl
's memory is an empty shell, and the agents are in charge of defining the tensors according to their needs.Depending on the agent, the memory can be used as: