train.py 15.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2019 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 24 25 26
# add python path of PadleDetection to sys.path
parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))
if parent_path not in sys.path:
    sys.path.append(parent_path)

27 28
import time
import numpy as np
X
xiegegege 已提交
29
import random
30
import datetime
31
import six
32
from collections import deque
H
hysunflower 已提交
33
from paddle.fluid import profiler
34 35

from paddle import fluid
36 37
from paddle.fluid.layers.learning_rate_scheduler import _decay_step_counter
from paddle.fluid.optimizer import ExponentialMovingAverage
38

39 40 41 42 43
import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)

K
Kaipeng Deng 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
try:
    from ppdet.experimental import mixed_precision_context
    from ppdet.core.workspace import load_config, merge_config, create
    from ppdet.data.reader import create_reader

    from ppdet.utils import dist_utils
    from ppdet.utils.eval_utils import parse_fetches, eval_run, eval_results
    from ppdet.utils.stats import TrainingStats
    from ppdet.utils.cli import ArgsParser
    from ppdet.utils.check import check_gpu, check_xpu, check_version, check_config, enable_static_mode
    import ppdet.utils.checkpoint as checkpoint
except ImportError as e:
    if sys.argv[0].find('static') >= 0:
        logger.error("Importing ppdet failed when running static model "
                     "with error: {}\n"
                     "please try:\n"
                     "\t1. run static model under PaddleDetection/static "
                     "directory\n"
                     "\t2. run 'pip uninstall ppdet' to uninstall ppdet "
                     "dynamic version firstly.".format(e))
        sys.exit(-1)
    else:
        raise e

68 69

def main():
70
    env = os.environ
71 72 73
    FLAGS.dist = 'PADDLE_TRAINER_ID' in env \
                    and 'PADDLE_TRAINERS_NUM' in env \
                    and int(env['PADDLE_TRAINERS_NUM']) > 1
74
    num_trainers = int(env.get('PADDLE_TRAINERS_NUM', 1))
75 76 77 78 79 80
    if FLAGS.dist:
        trainer_id = int(env['PADDLE_TRAINER_ID'])
        local_seed = (99 + trainer_id)
        random.seed(local_seed)
        np.random.seed(local_seed)

X
xiegegege 已提交
81 82 83 84
    if FLAGS.enable_ce:
        random.seed(0)
        np.random.seed(0)

85 86
    cfg = load_config(FLAGS.config)
    merge_config(FLAGS.opt)
87
    check_config(cfg)
88 89
    # check if set use_gpu=True in paddlepaddle cpu version
    check_gpu(cfg.use_gpu)
Q
QingshuChen 已提交
90 91 92 93
    use_xpu = False
    if hasattr(cfg, 'use_xpu'):
        check_xpu(cfg.use_xpu)
        use_xpu = cfg.use_xpu
W
wangguanzhong 已提交
94 95
    # check if paddlepaddle version is satisfied
    check_version()
96

Q
QingshuChen 已提交
97 98 99
    assert not (use_xpu and cfg.use_gpu), \
            'Can not run on both XPU and GPU'

W
wangguanzhong 已提交
100 101 102 103
    save_only = getattr(cfg, 'save_prediction_only', False)
    if save_only:
        raise NotImplementedError('The config file only support prediction,'
                                  ' training stage is not implemented now')
104 105
    main_arch = cfg.architecture

106 107
    if cfg.use_gpu:
        devices_num = fluid.core.get_cuda_device_count()
Q
QingshuChen 已提交
108 109 110
    elif use_xpu:
        # ToDo(qingshu): XPU only support single card now
        devices_num = 1
111
    else:
112
        devices_num = int(os.environ.get('CPU_NUM', 1))
113

Q
QingshuChen 已提交
114
    if cfg.use_gpu and 'FLAGS_selected_gpus' in env:
115
        device_id = int(env['FLAGS_selected_gpus'])
Q
QingshuChen 已提交
116 117
    elif use_xpu and 'FLAGS_selected_xpus' in env:
        device_id = int(env['FLAGS_selected_xpus'])
118 119
    else:
        device_id = 0
Q
QingshuChen 已提交
120 121 122 123 124 125 126

    if cfg.use_gpu:
        place = fluid.CUDAPlace(device_id)
    elif use_xpu:
        place = fluid.XPUPlace(device_id)
    else:
        place = fluid.CPUPlace()
127 128 129 130 131 132 133 134
    exe = fluid.Executor(place)

    lr_builder = create('LearningRate')
    optim_builder = create('OptimizerBuilder')

    # build program
    startup_prog = fluid.Program()
    train_prog = fluid.Program()
X
xiegegege 已提交
135 136 137
    if FLAGS.enable_ce:
        startup_prog.random_seed = 1000
        train_prog.random_seed = 1000
138 139
    with fluid.program_guard(train_prog, startup_prog):
        with fluid.unique_name.guard():
140
            model = create(main_arch)
141 142 143 144 145 146
            if FLAGS.fp16:
                assert (getattr(model.backbone, 'norm_type', None)
                        != 'affine_channel'), \
                    '--fp16 currently does not support affine channel, ' \
                    ' please modify backbone settings to use batch norm'

147
            with mixed_precision_context(FLAGS.loss_scale, FLAGS.fp16) as ctx:
148 149
                inputs_def = cfg['TrainReader']['inputs_def']
                feed_vars, train_loader = model.build_inputs(**inputs_def)
150 151 152 153 154 155
                train_fetches = model.train(feed_vars)
                loss = train_fetches['loss']
                if FLAGS.fp16:
                    loss *= ctx.get_loss_scale_var()
                lr = lr_builder()
                optimizer = optim_builder(lr)
156
                optimizer.minimize(loss)
157

158 159
                if FLAGS.fp16:
                    loss /= ctx.get_loss_scale_var()
160

161 162 163 164 165 166
            if 'use_ema' in cfg and cfg['use_ema']:
                global_steps = _decay_step_counter()
                ema = ExponentialMovingAverage(
                    cfg['ema_decay'], thres_steps=global_steps)
                ema.update()

167 168 169 170 171 172 173 174
    # parse train fetches
    train_keys, train_values, _ = parse_fetches(train_fetches)
    train_values.append(lr)

    if FLAGS.eval:
        eval_prog = fluid.Program()
        with fluid.program_guard(eval_prog, startup_prog):
            with fluid.unique_name.guard():
175
                model = create(main_arch)
176 177
                inputs_def = cfg['EvalReader']['inputs_def']
                feed_vars, eval_loader = model.build_inputs(**inputs_def)
178
                fetches = model.eval(feed_vars)
179 180
        eval_prog = eval_prog.clone(True)

181
        eval_reader = create_reader(cfg.EvalReader, devices_num=1)
182 183
        # When iterable mode, set set_sample_list_generator(eval_reader, place)
        eval_loader.set_sample_list_generator(eval_reader)
184

185
        # parse eval fetches
186 187 188 189
        extra_keys = []
        if cfg.metric == 'COCO':
            extra_keys = ['im_info', 'im_id', 'im_shape']
        if cfg.metric == 'VOC':
190
            extra_keys = ['gt_bbox', 'gt_class', 'is_difficult']
191
        if cfg.metric == 'WIDERFACE':
192
            extra_keys = ['im_id', 'im_shape', 'gt_bbox']
193 194 195 196 197
        eval_keys, eval_values, eval_cls = parse_fetches(fetches, eval_prog,
                                                         extra_keys)

    # compile program for multi-devices
    build_strategy = fluid.BuildStrategy()
198
    build_strategy.fuse_all_optimizer_ops = False
K
Kaipeng Deng 已提交
199
    # only enable sync_bn in multi GPU devices
200
    sync_bn = getattr(model.backbone, 'norm_type', None) == 'sync_bn'
201 202
    build_strategy.sync_batch_norm = sync_bn and devices_num > 1 \
        and cfg.use_gpu
203 204 205 206 207 208

    exec_strategy = fluid.ExecutionStrategy()
    # iteration number when CompiledProgram tries to drop local execution scopes.
    # Set it to be 1 to save memory usages, so that unused variables in
    # local execution scopes can be deleted after each iteration.
    exec_strategy.num_iteration_per_drop_scope = 1
209
    if FLAGS.dist:
W
wangguanzhong 已提交
210 211
        dist_utils.prepare_for_multi_process(exe, build_strategy, startup_prog,
                                             train_prog)
212
        exec_strategy.num_threads = 1
213 214

    exe.run(startup_prog)
215 216 217 218
    compiled_train_prog = fluid.CompiledProgram(train_prog).with_data_parallel(
        loss_name=loss.name,
        build_strategy=build_strategy,
        exec_strategy=exec_strategy)
Q
QingshuChen 已提交
219 220
    if use_xpu:
        compiled_train_prog = train_prog
221 222

    if FLAGS.eval:
223
        compiled_eval_prog = fluid.CompiledProgram(eval_prog)
Q
QingshuChen 已提交
224 225
        if use_xpu:
            compiled_eval_prog = eval_prog
226

227
    fuse_bn = getattr(model.backbone, 'norm_type', None) == 'affine_channel'
228

Q
qingqing01 已提交
229 230 231 232
    ignore_params = cfg.finetune_exclude_pretrained_params \
                 if 'finetune_exclude_pretrained_params' in cfg else []

    start_iter = 0
233 234
    if FLAGS.resume_checkpoint:
        checkpoint.load_checkpoint(exe, train_prog, FLAGS.resume_checkpoint)
Q
qingqing01 已提交
235
        start_iter = checkpoint.global_step()
236
    elif cfg.pretrain_weights and fuse_bn and not ignore_params:
237 238
        checkpoint.load_and_fusebn(exe, train_prog, cfg.pretrain_weights)
    elif cfg.pretrain_weights:
239 240
        checkpoint.load_params(
            exe, train_prog, cfg.pretrain_weights, ignore_params=ignore_params)
241

242 243 244
    train_reader = create_reader(
        cfg.TrainReader, (cfg.max_iters - start_iter) * devices_num,
        cfg,
245 246
        devices_num=devices_num,
        num_trainers=num_trainers)
247 248
    # When iterable mode, set set_sample_list_generator(train_reader, place)
    train_loader.set_sample_list_generator(train_reader)
249

250 251 252 253 254 255
    # whether output bbox is normalized in model output layer
    is_bbox_normalized = False
    if hasattr(model, 'is_bbox_normalized') and \
            callable(model.is_bbox_normalized):
        is_bbox_normalized = model.is_bbox_normalized()

K
Kaipeng Deng 已提交
256 257 258
    # if map_type not set, use default 11point, only use in VOC eval
    map_type = cfg.map_type if 'map_type' in cfg else '11point'

259
    train_stats = TrainingStats(cfg.log_iter, train_keys)
W
wangguanzhong 已提交
260
    train_loader.start()
261 262 263 264 265
    start_time = time.time()
    end_time = time.time()

    cfg_name = os.path.basename(FLAGS.config).split('.')[0]
    save_dir = os.path.join(cfg.save_dir, cfg_name)
266
    time_stat = deque(maxlen=cfg.log_iter)
267
    best_box_ap_list = [0.0, 0]  #[map, iter]
268

走神的阿圆's avatar
走神的阿圆 已提交
269 270
    # use VisualDL to log data
    if FLAGS.use_vdl:
271
        assert six.PY3, "VisualDL requires Python >= 3.5"
走神的阿圆's avatar
走神的阿圆 已提交
272 273 274 275
        from visualdl import LogWriter
        vdl_writer = LogWriter(FLAGS.vdl_log_dir)
        vdl_loss_step = 0
        vdl_mAP_step = 0
276

Q
qingqing01 已提交
277
    for it in range(start_iter, cfg.max_iters):
278 279
        start_time = end_time
        end_time = time.time()
280 281 282 283
        time_stat.append(end_time - start_time)
        time_cost = np.mean(time_stat)
        eta_sec = (cfg.max_iters - it) * time_cost
        eta = str(datetime.timedelta(seconds=int(eta_sec)))
284
        outs = exe.run(compiled_train_prog, fetch_list=train_values)
285
        stats = {k: np.array(v).mean() for k, v in zip(train_keys, outs[:-1])}
286

走神的阿圆's avatar
走神的阿圆 已提交
287 288
        # use vdl-paddle to log loss
        if FLAGS.use_vdl:
289 290
            if it % cfg.log_iter == 0:
                for loss_name, loss_value in stats.items():
走神的阿圆's avatar
走神的阿圆 已提交
291 292
                    vdl_writer.add_scalar(loss_name, loss_value, vdl_loss_step)
                vdl_loss_step += 1
293

294 295
        train_stats.update(stats)
        logs = train_stats.log()
296
        if it % cfg.log_iter == 0 and (not FLAGS.dist or trainer_id == 0):
T
Tao Luo 已提交
297
            ips = float(cfg['TrainReader']['batch_size']) / time_cost
T
Tao Luo 已提交
298 299
            strs = 'iter: {}, lr: {:.6f}, {}, eta: {}, batch_cost: {:.5f} sec, ips: {:.5f} images/sec'.format(
                it, np.mean(outs[-1]), logs, eta, time_cost, ips)
300
            logger.info(strs)
301

H
hysunflower 已提交
302 303 304 305 306 307 308
        # NOTE : profiler tools, used for benchmark
        if FLAGS.is_profiler and it == 5:
            profiler.start_profiler("All")
        elif FLAGS.is_profiler and it == 10:
            profiler.stop_profiler("total", FLAGS.profiler_path)
            return

littletomatodonkey's avatar
littletomatodonkey 已提交
309

310 311
        if (it > 0 and it % cfg.snapshot_iter == 0 or it == cfg.max_iters - 1) \
           and (not FLAGS.dist or trainer_id == 0):
312
            save_name = str(it) if it != cfg.max_iters - 1 else "model_final"
313 314
            if 'use_ema' in cfg and cfg['use_ema']:
                exe.run(ema.apply_program)
315
            checkpoint.save(exe, train_prog, os.path.join(save_dir, save_name))
316 317 318 319

            if FLAGS.eval:
                # evaluation
                resolution = None
W
wangguanzhong 已提交
320
                if 'Mask' in cfg.architecture:
321
                    resolution = model.mask_head.resolution
W
wangguanzhong 已提交
322 323 324 325 326 327 328
                results = eval_run(
                    exe,
                    compiled_eval_prog,
                    eval_loader,
                    eval_keys,
                    eval_values,
                    eval_cls,
W
wangguanzhong 已提交
329
                    cfg,
W
wangguanzhong 已提交
330
                    resolution=resolution)
331
                box_ap_stats = eval_results(
332 333 334
                    results, cfg.metric, cfg.num_classes, resolution,
                    is_bbox_normalized, FLAGS.output_eval, map_type,
                    cfg['EvalReader']['dataset'])
335

走神的阿圆's avatar
走神的阿圆 已提交
336 337 338 339
                # use vdl_paddle to log mAP
                if FLAGS.use_vdl:
                    vdl_writer.add_scalar("mAP", box_ap_stats[0], vdl_mAP_step)
                    vdl_mAP_step += 1
340

341 342 343
                if box_ap_stats[0] > best_box_ap_list[0]:
                    best_box_ap_list[0] = box_ap_stats[0]
                    best_box_ap_list[1] = it
344 345
                    checkpoint.save(exe, train_prog,
                                    os.path.join(save_dir, "best_model"))
346
                logger.info("Best test box ap: {}, in iter: {}".format(
347
                    best_box_ap_list[0], best_box_ap_list[1]))
348

349 350 351
            if 'use_ema' in cfg and cfg['use_ema']:
                exe.run(ema.restore_program)

W
wangguanzhong 已提交
352
    train_loader.reset()
353 354 355


if __name__ == '__main__':
356
    enable_static_mode()
357
    parser = ArgsParser()
358 359 360 361 362 363
    parser.add_argument(
        "-r",
        "--resume_checkpoint",
        default=None,
        type=str,
        help="Checkpoint path for resuming training.")
364 365 366 367 368 369 370 371 372 373
    parser.add_argument(
        "--fp16",
        action='store_true',
        default=False,
        help="Enable mixed precision training.")
    parser.add_argument(
        "--loss_scale",
        default=8.,
        type=float,
        help="Mixed precision training loss scale.")
374 375 376 377 378 379
    parser.add_argument(
        "--eval",
        action='store_true',
        default=False,
        help="Whether to perform evaluation in train")
    parser.add_argument(
380
        "--output_eval",
381 382
        default=None,
        type=str,
383
        help="Evaluation directory, default is current directory.")
384
    parser.add_argument(
走神的阿圆's avatar
走神的阿圆 已提交
385
        "--use_vdl",
386 387
        type=bool,
        default=False,
走神的阿圆's avatar
走神的阿圆 已提交
388
        help="whether to record the data to VisualDL.")
389
    parser.add_argument(
走神的阿圆's avatar
走神的阿圆 已提交
390
        '--vdl_log_dir',
391
        type=str,
走神的阿圆's avatar
走神的阿圆 已提交
392 393
        default="vdl_log_dir/scalar",
        help='VisualDL logging directory for scalar.')
X
xiegegege 已提交
394 395 396 397 398 399
    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.")
H
hysunflower 已提交
400 401 402 403 404 405 406 407 408 409 410 411

    #NOTE:args for profiler tools, used for benchmark
    parser.add_argument(
        '--is_profiler',
        type=int,
        default=0,
        help='The switch of profiler tools. (used for benchmark)')
    parser.add_argument(
        '--profiler_path',
        type=str,
        default="./detection.profiler",
        help='The profiler output file path. (used for benchmark)')
412 413
    FLAGS = parser.parse_args()
    main()