From 0d1167bfdb1513b358163227486f7eecf3b573da Mon Sep 17 00:00:00 2001 From: gaotingquan Date: Thu, 29 Jun 2023 06:12:34 +0000 Subject: [PATCH] rm specified python version 3.7 --- tools/train.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/train.sh b/tools/train.sh index 412f1081..64679028 100755 --- a/tools/train.sh +++ b/tools/train.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash # for single card train -# python3.7 tools/train.py -c ./ppcls/configs/ImageNet/ResNet/ResNet50.yaml +# python tools/train.py -c ./ppcls/configs/ImageNet/ResNet/ResNet50.yaml # for multi-cards train export CUDA_VISIBLE_DEVICES=0,1,2,3 -python3.7 -m paddle.distributed.launch --gpus="0,1,2,3" tools/train.py -c ./ppcls/configs/ImageNet/ResNet/ResNet50.yaml +python -m paddle.distributed.launch --gpus="0,1,2,3" tools/train.py -c ./ppcls/configs/ImageNet/ResNet/ResNet50.yaml -- GitLab