Update quick_start_en.md (#576)
parent
c07c5de1ed
commit
63a10e5687
|
@ -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.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -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
|
||||||
```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
|
||||||
```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
|
||||||
```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
|
||||||
```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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue