1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

changing python to python3 everywhere to make the supported version of python explicit

This commit is contained in:
Gal Leibovich
2017-10-23 13:07:54 +03:00
parent 16604b11df
commit 1a09b7cec3
4 changed files with 20 additions and 20 deletions

View File

@@ -273,7 +273,7 @@ if __name__ == "__main__":
set_cpu()
# create a parameter server
Popen(["python",
Popen(["python3",
"./parallel_actor.py",
"--ps_hosts={}".format(ps_hosts),
"--worker_hosts={}".format(worker_hosts),
@@ -296,7 +296,7 @@ if __name__ == "__main__":
run_dict['visualization.render'] = False # #In a parallel setting, only the evaluation agent renders
json_run_dict_path = run_dict_to_json(run_dict, i)
workers_args = ["python", "./parallel_actor.py",
workers_args = ["python3", "./parallel_actor.py",
"--ps_hosts={}".format(ps_hosts),
"--worker_hosts={}".format(worker_hosts),
"--job_name=worker",