Commit 60613a87 authored by Raymond Yuan's avatar Raymond Yuan
Browse files

add game name param

parent 43d85fbd
...@@ -153,7 +153,8 @@ class MasterAgent(): ...@@ -153,7 +153,8 @@ class MasterAgent():
self.action_size, self.action_size,
self.global_model, self.global_model,
self.opt, res_queue, self.opt, res_queue,
i, save_dir=self.save_dir) for i in range(multiprocessing.cpu_count())] i, game_name=self.game_name,
save_dir=self.save_dir) for i in range(multiprocessing.cpu_count())]
for i, worker in enumerate(workers): for i, worker in enumerate(workers):
print("Starting worker {}".format(i)) print("Starting worker {}".format(i))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment