9 lines
401 B
Bash
9 lines
401 B
Bash
cd src
|
|
# train
|
|
python main.py multi_pose --exp_id dla_1x --dataset coco_hp --batch_size 128 --master_batch 9 --lr 5e-4 --load_model ../models/ctdet_coco_dla_2x.pth --gpus 0,1,2,3,4,5,6,7 --num_workers 16
|
|
# test
|
|
python test.py multi_pose --exp_id dla_1x --dataset coco_hp --keep_res --resume
|
|
# flip test
|
|
python test.py multi_pose --exp_id dla_1x --dataset coco_hp --keep_res --resume --flip_test
|
|
cd ..
|