train.py 5.1 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

W
wangxinxin08 已提交
36
from ppdet.utils.cli import ArgsParser, merge_args
Q
qingqing01 已提交
37 38 39 40 41 42
import ppdet.utils.check as check
from ppdet.utils.logger import setup_logger
logger = setup_logger('train')


def parse_args():
W
wangxinxin08 已提交
43
    parser = ArgsParser()
Q
qingqing01 已提交
44 45 46 47 48
    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
    parser.add_argument(
W
Wenyu 已提交
63
        "--amp",
64 65
        action='store_true',
        default=False,
W
Wenyu 已提交
66
        help="Enable auto mixed precision training.")
67 68
    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(
        "--use_wandb",
        type=bool,
        default=False,
        help="whether to record the data to wandb.")
84 85 86 87 88
    parser.add_argument(
        '--save_prediction_only',
        action='store_true',
        default=False,
        help='Whether to save the evaluation results only')
89 90 91 92 93 94 95
    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.")
96 97 98 99 100 101 102 103 104 105 106
    parser.add_argument(
        '--save_proposals',
        action='store_true',
        default=False,
        help='Whether to save the train proposals')
    parser.add_argument(
        '--proposals_path',
        type=str,
        default="sniper/proposals.json",
        help='Train proposals directory')

Q
qingqing01 已提交
107 108 109 110
    args = parser.parse_args()
    return args


K
Kaipeng Deng 已提交
111
def run(FLAGS, cfg):
112 113
    # init fleet environment
    if cfg.fleet:
114
        init_fleet_env(cfg.get('find_unused_parameters', False))
115 116 117
    else:
        # init parallel environment if nranks > 1
        init_parallel_env()
Q
qingqing01 已提交
118 119

    if FLAGS.enable_ce:
K
Kaipeng Deng 已提交
120 121 122 123 124 125
        set_random_seed(0)

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

    # load weights
K
Kaipeng Deng 已提交
126 127
    if FLAGS.resume is not None:
        trainer.resume_weights(FLAGS.resume)
128
    elif 'pretrain_weights' in cfg and cfg.pretrain_weights:
K
Kaipeng Deng 已提交
129
        trainer.load_weights(cfg.pretrain_weights)
K
Kaipeng Deng 已提交
130 131

    # training
K
Kaipeng Deng 已提交
132
    trainer.train(FLAGS.eval)
Q
qingqing01 已提交
133 134 135 136 137


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
W
wangxinxin08 已提交
138
    merge_args(cfg, FLAGS)
Q
qingqing01 已提交
139
    merge_config(FLAGS.opt)
140

141 142 143 144
    # disable npu in config by default
    if 'use_npu' not in cfg:
        cfg.use_npu = False

H
houj04 已提交
145 146 147 148
    # disable xpu in config by default
    if 'use_xpu' not in cfg:
        cfg.use_xpu = False

149 150 151
    if 'use_gpu' not in cfg:
        cfg.use_gpu = False

152 153 154 155
    # disable mlu in config by default
    if 'use_mlu' not in cfg:
        cfg.use_mlu = False

156 157 158 159
    if cfg.use_gpu:
        place = paddle.set_device('gpu')
    elif cfg.use_npu:
        place = paddle.set_device('npu')
H
houj04 已提交
160 161
    elif cfg.use_xpu:
        place = paddle.set_device('xpu')
162 163
    elif cfg.use_mlu:
        place = paddle.set_device('mlu')
164 165
    else:
        place = paddle.set_device('cpu')
166

167
    if FLAGS.slim_config:
168 169
        cfg = build_slim_model(cfg, FLAGS.slim_config)

S
shangliang Xu 已提交
170 171
    # FIXME: Temporarily solve the priority problem of FLAGS.opt
    merge_config(FLAGS.opt)
Q
qingqing01 已提交
172 173
    check.check_config(cfg)
    check.check_gpu(cfg.use_gpu)
174
    check.check_npu(cfg.use_npu)
175
    check.check_xpu(cfg.use_xpu)
176
    check.check_mlu(cfg.use_mlu)
W
wangguanzhong 已提交
177
    check.check_version()
Q
qingqing01 已提交
178

K
Kaipeng Deng 已提交
179
    run(FLAGS, cfg)
Q
qingqing01 已提交
180 181 182 183


if __name__ == "__main__":
    main()