Modify yolov4 eval/test shape

This commit is contained in:
zhanghuiyao 2021-03-24 09:49:56 +08:00
parent 159071d438
commit d9ab3eaedc
2 changed files with 2 additions and 2 deletions

View File

@ -62,5 +62,5 @@ echo "start inferring for device $DEVICE_ID"
python eval.py \
--data_dir=$DATASET_PATH \
--pretrained=$CHECKPOINT_PATH \
--testing_shape=416 > log.txt 2>&1 &
--testing_shape=608 > log.txt 2>&1 &
cd ..

View File

@ -62,5 +62,5 @@ echo "start inferring for device $DEVICE_ID"
python test.py \
--data_dir=$DATASET_PATH \
--pretrained=$CHECKPOINT_PATH \
--testing_shape=416 > log.txt 2>&1 &
--testing_shape=608 > log.txt 2>&1 &
cd ..