train.py 4.6 KB
Newer Older
Q
qingqing01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

M
Manuel Garcia 已提交
19 20 21
import os
import sys

Q
qingqing01 已提交
22 23
# add python path of PadleDetection to sys.path
parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))
24
sys.path.insert(0, parent_path)
Q
qingqing01 已提交
25

G
Guanghua Yu 已提交
26 27 28
# ignore warning log
import warnings
warnings.filterwarnings('ignore')
Q
qingqing01 已提交
29 30 31

import paddle

M
Manuel Garcia 已提交
32
from ppdet.core.workspace import load_config, merge_config
33
from ppdet.engine import Trainer, init_parallel_env, set_random_seed, init_fleet_env
34
from ppdet.slim import build_slim_model
Q
qingqing01 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48

import ppdet.utils.cli as cli
import ppdet.utils.check as check
from ppdet.utils.logger import setup_logger
logger = setup_logger('train')


def parse_args():
    parser = cli.ArgsParser()
    parser.add_argument(
        "--eval",
        action='store_true',
        default=False,
        help="Whether to perform evaluation in train")
K
Kaipeng Deng 已提交
49 50
    parser.add_argument(
        "-r", "--resume", default=None, help="weights path for resume")
Q
qingqing01 已提交
51
    parser.add_argument(
52
        "--slim_config",
Q
qingqing01 已提交
53 54
        default=None,
        type=str,
55
        help="Configuration file of slim method.")
Q
qingqing01 已提交
56 57 58 59 60 61
    parser.add_argument(
        "--enable_ce",
        type=bool,
        default=False,
        help="If set True, enable continuous evaluation job."
        "This flag is only used for internal test.")
62 63 64 65 66 67 68
    parser.add_argument(
        "--fp16",
        action='store_true',
        default=False,
        help="Enable mixed precision training.")
    parser.add_argument(
        "--fleet", action='store_true', default=False, help="Use fleet or not")
69 70 71 72 73 74 75 76 77 78
    parser.add_argument(
        "--use_vdl",
        type=bool,
        default=False,
        help="whether to record the data to VisualDL.")
    parser.add_argument(
        '--vdl_log_dir',
        type=str,
        default="vdl_log_dir/scalar",
        help='VisualDL logging directory for scalar.')
79 80 81 82 83
    parser.add_argument(
        '--save_prediction_only',
        action='store_true',
        default=False,
        help='Whether to save the evaluation results only')
84 85 86 87 88 89 90
    parser.add_argument(
        '--profiler_options',
        type=str,
        default=None,
        help="The option of profiler, which should be in "
        "format \"key1=value1;key2=value2;key3=value3\"."
        "please see ppdet/utils/profiler.py for detail.")
Q
qingqing01 已提交
91 92 93 94
    args = parser.parse_args()
    return args


K
Kaipeng Deng 已提交
95
def run(FLAGS, cfg):
96 97
    # init fleet environment
    if cfg.fleet:
98
        init_fleet_env(cfg.get('find_unused_parameters', False))
99 100 101
    else:
        # init parallel environment if nranks > 1
        init_parallel_env()
Q
qingqing01 已提交
102 103

    if FLAGS.enable_ce:
K
Kaipeng Deng 已提交
104 105 106 107 108 109
        set_random_seed(0)

    # build trainer
    trainer = Trainer(cfg, mode='train')

    # load weights
K
Kaipeng Deng 已提交
110 111
    if FLAGS.resume is not None:
        trainer.resume_weights(FLAGS.resume)
112
    elif 'pretrain_weights' in cfg and cfg.pretrain_weights:
K
Kaipeng Deng 已提交
113
        trainer.load_weights(cfg.pretrain_weights)
K
Kaipeng Deng 已提交
114 115

    # training
K
Kaipeng Deng 已提交
116
    trainer.train(FLAGS.eval)
Q
qingqing01 已提交
117 118 119 120 121


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
122 123
    cfg['fp16'] = FLAGS.fp16
    cfg['fleet'] = FLAGS.fleet
124 125
    cfg['use_vdl'] = FLAGS.use_vdl
    cfg['vdl_log_dir'] = FLAGS.vdl_log_dir
126
    cfg['save_prediction_only'] = FLAGS.save_prediction_only
127
    cfg['profiler_options'] = FLAGS.profiler_options
Q
qingqing01 已提交
128
    merge_config(FLAGS.opt)
129

130 131 132 133 134 135 136 137 138 139
    # disable npu in config by default
    if 'use_npu' not in cfg:
        cfg.use_npu = False

    if cfg.use_gpu:
        place = paddle.set_device('gpu')
    elif cfg.use_npu:
        place = paddle.set_device('npu')
    else:
        place = paddle.set_device('cpu')
140

G
Guanghua Yu 已提交
141 142 143
    if 'norm_type' in cfg and cfg['norm_type'] == 'sync_bn' and not cfg.use_gpu:
        cfg['norm_type'] = 'bn'

144
    if FLAGS.slim_config:
145 146
        cfg = build_slim_model(cfg, FLAGS.slim_config)

S
shangliang Xu 已提交
147 148
    # FIXME: Temporarily solve the priority problem of FLAGS.opt
    merge_config(FLAGS.opt)
Q
qingqing01 已提交
149 150
    check.check_config(cfg)
    check.check_gpu(cfg.use_gpu)
151
    check.check_npu(cfg.use_npu)
Q
qingqing01 已提交
152 153
    check.check_version()

K
Kaipeng Deng 已提交
154
    run(FLAGS, cfg)
Q
qingqing01 已提交
155 156 157 158


if __name__ == "__main__":
    main()