1
0
mirror of https://github.com/gryf/coach.git synced 2026-02-16 05:55:46 +01:00

waiting for a new checkpoint if it's available

This commit is contained in:
Ajay Deshpande
2018-10-05 19:08:24 -07:00
committed by zach dwiel
parent 5eac0102de
commit 7f00235ed5
7 changed files with 49 additions and 20 deletions

View File

@@ -53,8 +53,7 @@ class Memory(object):
def store_episode(self, episode):
if self.memory_backend:
for transition in episode:
self.memory_backend.store(transition)
self.memory_backend.store(episode)
def get(self, index):
raise NotImplementedError("")