未验证 提交 63a10e56 编写于 作者: B Bin Lu 提交者: GitHub

Update quick_start_en.md (#576)

上级 c07c5de1
...@@ -68,13 +68,13 @@ cd ../ ...@@ -68,13 +68,13 @@ cd ../
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/ResNet50_vd.yaml         -c ./configs/quick_start/ResNet50_vd.yaml
``` ```
The validation `Top1 Acc` curve is showmn below. The validation `Top1 Acc` curve is shown below.
![](../../images/quick_start/r50_vd_acc.png) ![](../../images/quick_start/r50_vd_acc.png)
...@@ -86,7 +86,7 @@ The validation `Top1 Acc` curve is showmn below. ...@@ -86,7 +86,7 @@ The validation `Top1 Acc` curve is showmn below.
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/ResNet50_vd_finetune.yaml         -c ./configs/quick_start/ResNet50_vd_finetune.yaml
...@@ -116,7 +116,7 @@ Tringing script ...@@ -116,7 +116,7 @@ Tringing script
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/ResNet50_vd_ssld_finetune.yaml         -c ./configs/quick_start/ResNet50_vd_ssld_finetune.yaml
``` ```
...@@ -131,7 +131,7 @@ Training script ...@@ -131,7 +131,7 @@ Training script
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/MobileNetV3_large_x1_0_finetune.yaml         -c ./configs/quick_start/MobileNetV3_large_x1_0_finetune.yaml
``` ```
...@@ -148,7 +148,7 @@ Training script ...@@ -148,7 +148,7 @@ Training script
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/ResNet50_vd_ssld_random_erasing_finetune.yaml         -c ./configs/quick_start/ResNet50_vd_ssld_random_erasing_finetune.yaml
``` ```
...@@ -185,7 +185,7 @@ Final training script ...@@ -185,7 +185,7 @@ Final training script
```shell ```shell
export CUDA_VISIBLE_DEVICES=0 export CUDA_VISIBLE_DEVICES=0
python -m paddle.distributed.launch \ python -m paddle.distributed.launch \
    --selected_gpus="0" \     --gpus="0" \
    tools/train.py \     tools/train.py \
        -c ./configs/quick_start/R50_vd_distill_MV3_large_x1_0.yaml         -c ./configs/quick_start/R50_vd_distill_MV3_large_x1_0.yaml
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册