From 848b8f0399f064aebc1bcc3cfb6c06b965d68f7e Mon Sep 17 00:00:00 2001 From: Wenbo Hu Date: Tue, 12 Dec 2017 17:09:26 +0800 Subject: [PATCH] minor fix --- AlphaGo/self-play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AlphaGo/self-play.py b/AlphaGo/self-play.py index 8d27058..98ccf84 100644 --- a/AlphaGo/self-play.py +++ b/AlphaGo/self-play.py @@ -14,7 +14,7 @@ args = parser.parse_args() if not os.path.exists(args.result_path): os.makedirs(args.result_path) -game = Game(checkpoint_path="./checkpoints/") +game = Game() engine = GTPEngine(game_obj=game) history = deque(maxlen=8) for i in range(8):