From a6fc3bcfab9ac67a4844434518309a690bc80829 Mon Sep 17 00:00:00 2001 From: gmm <38800877+mmglove@users.noreply.github.com> Date: Mon, 23 May 2022 11:24:35 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90Develop=E3=80=91fix=20benchmark=20(#60?= =?UTF-8?q?17)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix becnhmark,delete run_process_type * fix * fix benchmarkk * fix mask_rcnn_r50_1x_coco benchmark * fix benchmark * fix benchmark * fix benchmark prepare.sh Co-authored-by: zhengya01 --- test_tipc/prepare.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test_tipc/prepare.sh b/test_tipc/prepare.sh index 754d5c24c..37efb0306 100644 --- a/test_tipc/prepare.sh +++ b/test_tipc/prepare.sh @@ -61,12 +61,16 @@ elif [ ${MODE} = "benchmark_train" ];then pip install -r requirements.txt # prepare lite benchmark coco data wget -nc -P ./dataset/coco/ https://paddledet.bj.bcebos.com/data/coco_benchmark.tar - cd ./dataset/coco/ && tar -xvf coco_benchmark.tar && mv -u coco_benchmark/* . - rm -rf coco_benchmark/ && cd ../../ + cd ./dataset/coco/ && tar -xvf coco_benchmark.tar + mv -u coco_benchmark/* ./ + ls ./ + cd ../../ # prepare lite benchmark mot data wget -nc -P ./dataset/mot/ https://paddledet.bj.bcebos.com/data/mot_benchmark.tar - cd ./dataset/mot/ && tar -xvf mot_benchmark.tar && mv -u mot_benchmark/* . - rm -rf mot_benchmark/ && cd ../../ + cd ./dataset/mot/ && tar -xvf mot_benchmark.tar + mv -u mot_benchmark/* ./ + ls ./ + cd ../../ elif [ ${MODE} = "paddle2onnx_infer" ];then # set paddle2onnx_infer enve ${python} -m pip install install paddle2onnx -- GitLab