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