post.sh 338 Bytes
Newer Older
sunzhq2's avatar
sunzhq2 committed
1
2
3
4
5
6
7
8
9
10
11
12
for i in {0..3} 
do
python3 yolov5_postprocess_new.py \
	--ground_truth_json /datasets/coco/instances_val2017.json \
	--batch_size 24 \
	--cfg_file cfg.yaml \
	--output results/${i} \
	--data_path /datasets/coco \
	--img_size 640
#	--img_info \
#	--ground_truth_json /workspace/datasets/COCO2017/annotations/instances_val2017.json \
done