From d2eefde2cb1824a23e5d77953813ea034190b90f Mon Sep 17 00:00:00 2001 From: Mats Gottenbos <matsgottenbos@gmail.com> Date: Mon, 18 Jan 2021 10:43:20 +0100 Subject: [PATCH] Set worker number back to 1 --- games/racecar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/racecar.py b/games/racecar.py index 6c08a9d..2ee3bc6 100644 --- a/games/racecar.py +++ b/games/racecar.py @@ -30,7 +30,7 @@ class MuZeroConfig: ### Self-Play - self.num_workers = 5 # Number of simultaneous threads/workers self-playing to feed the replay buffer + self.num_workers = 1 # Number of simultaneous threads/workers self-playing to feed the replay buffer self.selfplay_on_gpu = False self.max_moves = 1000 # Maximum number of moves if game is not finished before self.num_simulations = 50 # Number of future moves self-simulated -- GitLab