!19445 textrcnn bug fix

Merge pull request !19445 from 张晓晓/master
This commit is contained in:
i-robot 2021-07-06 06:49:16 +00:00 committed by Gitee
commit c6f576f625
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ file_name: 'textrcnn'
file_format: "MINDIR"
# postprocess and result_path related
pre_result_path: "./preprocess_result"
pre_result_path: "./preprocess_Result"
label_path: "./preprocess_Result/label_ids.npy"
result_path: "./result_Files"

View File

@ -66,7 +66,7 @@ function preprocess_data()
rm -rf ./preprocess_Result
fi
mkdir preprocess_Result
python3.7 ../preprocess.py --result_path=./preprocess_Result > preprocess.log 2>&1
python3.7 ../preprocess.py --pre_result_path=./preprocess_Result > preprocess.log 2>&1
}
function compile_app()