From bb846096fa3a3fbe6d938be16dd18cf3780bb544 Mon Sep 17 00:00:00 2001 From: JYChen Date: Wed, 7 Jul 2021 19:18:28 +0800 Subject: [PATCH] fix keypoint-doc error, test=document_fix (#3619) --- configs/keypoint/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/configs/keypoint/README.md b/configs/keypoint/README.md index 286fe64dc..6076193cd 100644 --- a/configs/keypoint/README.md +++ b/configs/keypoint/README.md @@ -50,24 +50,27 @@ MPII数据集 ​ **单卡训练:** ```shell +#COCO DataSet CUDA_VISIBLE_DEVICES=0 python3 tools/train.py -c configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml #MPII DataSet -CUDA_VISIBLE_DEVICES=0 nohup python3 tools/train.py -c configs/keypoint/hrnet/hrnet_w32_256x256_mpii.yml +CUDA_VISIBLE_DEVICES=0 python3 tools/train.py -c configs/keypoint/hrnet/hrnet_w32_256x256_mpii.yml ``` ​ **多卡训练:** ```shell +#COCO DataSet CUDA_VISIBLE_DEVICES=0,1,2,3 python3 -m paddle.distributed.launch tools/train.py -c configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml #MPII DataSet -CUDA_VISIBLE_DEVICES=0,1,2,3 nohup python3 -m paddle.distributed.launch tools/train.py -c configs/keypoint/hrnet/hrnet_w32_256x256_mpii.yml +CUDA_VISIBLE_DEVICES=0,1,2,3 python3 -m paddle.distributed.launch tools/train.py -c configs/keypoint/hrnet/hrnet_w32_256x256_mpii.yml ``` ​ **模型评估:** ```shell +#COCO DataSet CUDA_VISIBLE_DEVICES=0 python3 tools/eval.py -c configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml #MPII DataSet -- GitLab