From 77765801c921e0ef9d87a40717ea0ef16515cea3 Mon Sep 17 00:00:00 2001 From: littletomatodonkey <2120160898@bit.edu.cn> Date: Sun, 13 Dec 2020 21:23:36 +0800 Subject: [PATCH] Update quick_start.md --- docs/zh_CN/tutorials/quick_start.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/zh_CN/tutorials/quick_start.md b/docs/zh_CN/tutorials/quick_start.md index 5eea1b90..a5f6c427 100644 --- a/docs/zh_CN/tutorials/quick_start.md +++ b/docs/zh_CN/tutorials/quick_start.md @@ -72,7 +72,7 @@ cd ../ ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/ResNet50_vd.yaml @@ -90,7 +90,7 @@ python -m paddle.distributed.launch \ ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/ResNet50_vd_finetune.yaml @@ -118,7 +118,7 @@ pretrained_model: "./pretrained/ResNet50_vd_ssld_pretrained" ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/ResNet50_vd_ssld_finetune.yaml ``` @@ -133,7 +133,7 @@ python -m paddle.distributed.launch \ ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/MobileNetV3_large_x1_0_finetune.yaml ``` @@ -149,7 +149,7 @@ python -m paddle.distributed.launch \ ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/ResNet50_vd_ssld_random_erasing_finetune.yaml ``` @@ -188,7 +188,7 @@ TRAIN: ```shell export CUDA_VISIBLE_DEVICES=0 python -m paddle.distributed.launch \ -    --selected_gpus="0" \ +    --gpus="0" \     tools/train.py \         -c ./configs/quick_start/R50_vd_distill_MV3_large_x1_0.yaml ``` -- GitLab