Files
FastDeploy/tests/acc_eval/segmentation/run.sh
yunyaoXYY 07ad7216f6 [Other] Add accuracy evaluation scripts (#1034)
* add accuracy scripts

* add accuracy scripts

* Add FlyCV doc

* fix conflict

* fix conflict

* fix conflict
2023-01-04 15:54:03 +08:00

9 lines
210 B
Bash

TARGET_DEVICE=ascend
model_dir=`ls ./models/`
for MODEL_NAME in $model_dir
do
python eval.py --model ./models/$MODEL_NAME --image None --device $TARGET_DEVICE 2>&1 | tee ./log/${MODEL_NAME}_acc.log
done