From b9e37947911a7f4dbc6fc0b617d1c31c09255747 Mon Sep 17 00:00:00 2001 From: Baljit Singh Date: Fri, 21 Jul 2017 16:21:07 +0300 Subject: [PATCH] Better file naming --- ..._set_present.json => custom_image_testing_set.json} | 0 web_upload_eval.py | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) rename src/machine_learning/data/{testing_set_present.json => custom_image_testing_set.json} (100%) diff --git a/src/machine_learning/data/testing_set_present.json b/src/machine_learning/data/custom_image_testing_set.json similarity index 100% rename from src/machine_learning/data/testing_set_present.json rename to src/machine_learning/data/custom_image_testing_set.json diff --git a/web_upload_eval.py b/web_upload_eval.py index 93b1e5e..cb3517c 100644 --- a/web_upload_eval.py +++ b/web_upload_eval.py @@ -16,7 +16,7 @@ def get_image_dir(): weights_iteration = int(os.path.abspath(abs_path_model+abs_path_model+'/save.ckpt-18000').split('-')[-1]) expname = '_' - image_dir = '%s/images_%s_%d%s' % (os.path.dirname(abs_path_model+'/save.ckpt-18000'), os.path.basename(abs_path_model+'/testing_set_present.json')[:-5], weights_iteration, expname) + image_dir = '%s/images_%s_%d%s' % (os.path.dirname(abs_path_model+'/save.ckpt-18000'), os.path.basename(abs_path_model+'/custom_image_testing_set.json')[:-5], weights_iteration, expname) return image_dir def get_results(H): @@ -37,8 +37,8 @@ def get_results(H): pred_annolist = al.AnnoList() - true_annolist = al.parse(abs_path_model+'/testing_set_present.json') - data_dir = os.path.dirname(abs_path_model+'/testing_set_present.json') + true_annolist = al.parse(abs_path_model+'/custom_image_testing_set.json') + data_dir = os.path.dirname(abs_path_model+'/custom_image_testing_set.json') image_dir = get_image_dir() subprocess.call('mkdir -p %s' % image_dir, shell=True) for i in range(len(true_annolist)): @@ -72,8 +72,8 @@ def check_main(): with open(hypes_file, 'r') as f: H = json.load(f) expname = '_' - pred_boxes = '%s.%s%s' % (abs_path_model+'/save.ckpt-18000', expname, os.path.basename(abs_path_model+'/testing_set_present.json')) - true_boxes = '%s.gt_%s%s' % (abs_path_model+'/save.ckpt-18000', expname, os.path.basename(abs_path_model+'/testing_set_present.json')) + pred_boxes = '%s.%s%s' % (abs_path_model+'/save.ckpt-18000', expname, os.path.basename(abs_path_model+'/custom_image_testing_set.json')) + true_boxes = '%s.gt_%s%s' % (abs_path_model+'/save.ckpt-18000', expname, os.path.basename(abs_path_model+'/custom_image_testing_set.json')) pred_annolist, true_annolist = get_results(H)