From 586701adcb49ebb7760f42d475ad7e9ea2ee73d6 Mon Sep 17 00:00:00 2001 From: Fize Jacques <jacques.fize@cirad.fr> Date: Mon, 25 Jan 2021 12:00:12 +0100 Subject: [PATCH] Update --- run_eval.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_eval.py b/run_eval.py index 163f017..79e8b45 100644 --- a/run_eval.py +++ b/run_eval.py @@ -22,6 +22,8 @@ fns = glob.glob(args.dataset_dir + "/*." + args.format) all_res = [] pbar = tqdm(fns) for fn in pbar: + if os.path.exists(fn + "_results_lp"): + continue pbar.set_description("run eval on "+ fn) command = "python evalNE_script.py {0} -f {1} -n".format(fn, args.format).split() output = subprocess.run(command) -- GitLab