From 1062b72bda1e08abda41bc3ff851564c3f6dd021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20M=C3=BCller=20Madsen?= Date: Thu, 19 Apr 2018 16:04:49 +0200 Subject: [PATCH] fix typo --- network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network.py b/network.py index 3449703..0c64997 100644 --- a/network.py +++ b/network.py @@ -164,7 +164,7 @@ class Network: # Restore trained episode count for model episode_count_path = os.path.join(self.checkpoint_path, "episodes_trained") -p if os.path.isfile(episode_count_path): + if os.path.isfile(episode_count_path): with open(episode_count_path, 'r') as f: self.config['start_episode'] = int(f.read())