pull/3559/head
LDOUBLEV 2021-08-05 07:34:33 +00:00
parent 61bd5296e0
commit e0520cf7e9
1 changed files with 5 additions and 2 deletions

View File

@ -235,17 +235,20 @@ if [ ${MODE} = "infer" ]; then
# run export
if [ ${infer_run_exports[Count]} != "null" ];then
set_export_weight=$(func_set_params "${export_weight}" "${infer_model}")
set_save_infer_key=$(func_set_params "${save_infer_key}" "${infer_model}")
set_save_infer_key=$(func_set_params "${save_infer_key}" "${infer_model}_infer")
export_cmd="${python} ${norm_export} ${set_export_weight} ${set_save_infer_key}"
eval $export_cmd
status_export=$?
if [ ${status_export} = 0 ];then
status_check $status_export "${export_cmd}" "${status_log}"
fi
load_infer_model="${infer_model}_infer"
else
load_infer_model="${infer_model}"
fi
#run inference
is_quant=${infer_quant_flag[Count]}
func_inference "${python}" "${inference_py}" "${infer_model}" "${LOG_PATH}" "${infer_img_dir}" ${is_quant}
func_inference "${python}" "${inference_py}" "${load_infer_model}" "${LOG_PATH}" "${infer_img_dir}" ${is_quant}
Count=$(($Count + 1))
done