LGJun 16, 2021

Solving Continuous Control with Episodic Memory

arXiv:2106.08832v123 citations
Originality Incremental advance
AI Analysis

This addresses sample-efficiency in reinforcement learning for continuous control, but it is incremental as it builds on existing episodic memory and Actor-Critic methods.

The study tackled the problem of applying episodic memory to continuous control tasks with large action spaces, resulting in improved sample-efficiency compared to state-of-the-art model-free off-policy algorithms on OpenAI gym domains.

Episodic memory lets reinforcement learning algorithms remember and exploit promising experience from the past to improve agent performance. Previous works on memory mechanisms show benefits of using episodic-based data structures for discrete action problems in terms of sample-efficiency. The application of episodic memory for continuous control with a large action space is not trivial. Our study aims to answer the question: can episodic memory be used to improve agent's performance in continuous control? Our proposed algorithm combines episodic memory with Actor-Critic architecture by modifying critic's objective. We further improve performance by introducing episodic-based replay buffer prioritization. We evaluate our algorithm on OpenAI gym domains and show greater sample-efficiency compared with the state-of-the art model-free off-policy algorithms.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes