CenterNet/experiments/multi_pose_hg_1x.sh

9 lines
398 B
Bash
Raw Normal View History

2019-04-17 22:53:59 +08:00
cd src
# train
python main.py multi_pose --exp_id hg_1x --arch hourglass --batch_size 24 --master_batch 4 --lr 2.5e-4 --load_model ../models/ctdet_coco_hg.pth --gpus 0,1,2,3,4 --num_epochs 50 --lr_step 40
# test
python test.py multi_pose --exp_id hg_1x --arch hourglass --keep_res --resume
# flip test
python test.py multi_pose --exp_id hg_1x --arch hourglass --keep_res --resume --flip_test
cd ..