raise exception when concatenate error

This commit is contained in:
dyning 2020-06-24 10:52:57 +08:00
parent 6a6c97f92b
commit a21bd9b77a
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def cal_det_res(exe, config, eval_info_dict):
try:
img_list = np.concatenate(img_list, axis=0)
except:
err = "concatenate error usually caused by different input image shapes.\n \
err = "concatenate error usually caused by different input image shapes in evaluation or testing.\n \
Please set \"test_batch_size_per_card\" in main yml as 1\n \
or add \"test_image_shape: [h, w]\" in reader yml for EvalReader."
raise Exception(err)