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())