train.py 3.9 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')
Q
qingqing01 已提交
84 85 86 87
    args = parser.parse_args()
    return args


K
Kaipeng Deng 已提交
88
def run(FLAGS, cfg):
89 90
    # init fleet environment
    if cfg.fleet:
91
        init_fleet_env(cfg.get('find_unused_parameters', False))
92 93 94
    else:
        # init parallel environment if nranks > 1
        init_parallel_env()
Q
qingqing01 已提交
95 96

    if FLAGS.enable_ce:
K
Kaipeng Deng 已提交
97 98 99 100 101 102
        set_random_seed(0)

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

    # load weights
K
Kaipeng Deng 已提交
103 104
    if FLAGS.resume is not None:
        trainer.resume_weights(FLAGS.resume)
105
    elif 'pretrain_weights' in cfg and cfg.pretrain_weights:
K
Kaipeng Deng 已提交
106
        trainer.load_weights(cfg.pretrain_weights)
K
Kaipeng Deng 已提交
107 108

    # training
K
Kaipeng Deng 已提交
109
    trainer.train(FLAGS.eval)
Q
qingqing01 已提交
110 111 112 113 114


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
115 116
    cfg['fp16'] = FLAGS.fp16
    cfg['fleet'] = FLAGS.fleet
117 118
    cfg['use_vdl'] = FLAGS.use_vdl
    cfg['vdl_log_dir'] = FLAGS.vdl_log_dir
119
    cfg['save_prediction_only'] = FLAGS.save_prediction_only
Q
qingqing01 已提交
120
    merge_config(FLAGS.opt)
121 122 123

    place = paddle.set_device('gpu' if cfg.use_gpu else 'cpu')

G
Guanghua Yu 已提交
124 125 126
    if 'norm_type' in cfg and cfg['norm_type'] == 'sync_bn' and not cfg.use_gpu:
        cfg['norm_type'] = 'bn'

127
    if FLAGS.slim_config:
128 129
        cfg = build_slim_model(cfg, FLAGS.slim_config)

Q
qingqing01 已提交
130 131 132 133
    check.check_config(cfg)
    check.check_gpu(cfg.use_gpu)
    check.check_version()

K
Kaipeng Deng 已提交
134
    run(FLAGS, cfg)
Q
qingqing01 已提交
135 136 137 138


if __name__ == "__main__":
    main()