run_distribute_train.sh 3.3 KB
Newer Older
Z
zhunaipan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/bash
# Copyright 2020 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================

C
chengxianbin 已提交
17
echo "======================================================================================================================================================="
Z
zhunaipan 已提交
18
echo "Please run the scipt as: "
C
chengxianbin 已提交
19 20
echo "sh run_distribute_train.sh DEVICE_NUM EPOCH_SIZE MINDRECORD_DIR IMAGE_DIR ANNO_PATH MINDSPORE_HCCL_CONFIG_PATH PRE_TRAINED PRE_TRAINED_EPOCH_SIZE"
echo "For example: sh run_distribute_train.sh 8 150 /data/Mindrecord_train /data /data/train.txt /data/hccl.json /opt/yolov3-150.ckpt(optional) 100(optional)"
21
echo "It is better to use absolute path."
Z
zhaoting 已提交
22
echo "The learning rate is 0.005 as default, if you want other lr, please change the value in this script."
C
chengxianbin 已提交
23 24 25 26 27 28 29 30
echo "======================================================================================================================================================="

if [ $# != 6 ] && [ $# != 8 ]
then
    echo "Usage: sh run_distribute_train.sh [DEVICE_NUM] [EPOCH_SIZE] [MINDRECORD_DIR] [IMAGE_DIR] [ANNO_PATH] [MINDSPORE_HCCL_CONFIG_PATH] \
[PRE_TRAINED](optional) [PRE_TRAINED_EPOCH_SIZE](optional)"
    exit 1
fi
Z
zhunaipan 已提交
31 32

EPOCH_SIZE=$2
33 34 35
MINDRECORD_DIR=$3
IMAGE_DIR=$4
ANNO_PATH=$5
C
chengxianbin 已提交
36 37
PRE_TRAINED=$7
PRE_TRAINED_EPOCH_SIZE=$8
38 39 40 41

# Before start distribute train, first create mindrecord files.
python train.py --only_create_dataset=1 --mindrecord_dir=$MINDRECORD_DIR --image_dir=$IMAGE_DIR  \
--anno_path=$ANNO_PATH
Z
zhunaipan 已提交
42

43 44 45 46
echo "After running the scipt, the network runs in the background. The log will be generated in LOGx/log.txt"

export MINDSPORE_HCCL_CONFIG_PATH=$6
export RANK_SIZE=$1
Z
zhunaipan 已提交
47 48 49 50

for((i=0;i<RANK_SIZE;i++))
do
    export DEVICE_ID=$i
Z
zhaoting 已提交
51 52 53 54 55

    start=`expr $i \* 12`
    end=`expr $start \+ 11`
    cmdopt=$start"-"$end

Z
zhunaipan 已提交
56 57 58 59 60 61 62
    rm -rf LOG$i
    mkdir ./LOG$i
    cp  *.py ./LOG$i
    cd ./LOG$i || exit
    export RANK_ID=$i
    echo "start training for rank $i, device $DEVICE_ID"
    env > env.log
C
chengxianbin 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91

    if [ $# == 6 ]
    then
        taskset -c $cmdopt python ../train.py  \
        --distribute=1  \
        --lr=0.005 \
        --device_num=$RANK_SIZE  \
        --device_id=$DEVICE_ID  \
        --mindrecord_dir=$MINDRECORD_DIR  \
        --image_dir=$IMAGE_DIR  \
        --epoch_size=$EPOCH_SIZE  \
        --anno_path=$ANNO_PATH > log.txt 2>&1 &
    fi

    if [ $# == 8 ]
    then
        taskset -c $cmdopt python ../train.py  \
        --distribute=1  \
        --lr=0.005 \
        --device_num=$RANK_SIZE  \
        --device_id=$DEVICE_ID  \
        --mindrecord_dir=$MINDRECORD_DIR  \
        --image_dir=$IMAGE_DIR  \
        --epoch_size=$EPOCH_SIZE  \
        --pre_trained=$PRE_TRAINED \
        --pre_trained_epoch_size=$PRE_TRAINED_EPOCH_SIZE \
        --anno_path=$ANNO_PATH > log.txt 2>&1 &
    fi

Z
zhunaipan 已提交
92 93
    cd ../
done