train.py 9.5 KB
Newer Older
R
ruri 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#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.

R
root 已提交
15 16 17
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
R
ruri 已提交
18

19 20 21
import os
import time
import sys
22

R
ruri 已提交
23
import numpy as np
24
import paddle
25
import paddle.fluid as fluid
26
from paddle.fluid import profiler
R
ruri 已提交
27 28
import reader
from utils import *
29
import models
R
ruri 已提交
30 31
from build_model import create_model

32

R
ruri 已提交
33
def build_program(is_train, main_prog, startup_prog, args):
R
ruri 已提交
34 35
    """build program, and add grad op in program accroding to different mode

R
ruri 已提交
36 37
    Parameters:
        is_train: indicate train mode or test mode
R
ruri 已提交
38 39 40 41 42
        main_prog: main program
        startup_prog: strartup program
        args: arguments

    Returns : 
43 44
        train mode: [Loss, global_lr, data_loader]
        test mode: [Loss, data_loader]
R
ruri 已提交
45
    """
46 47 48
    if args.model.startswith('EfficientNet'):
        override_params = {"drop_connect_rate": args.drop_connect_rate}
        padding_type = args.padding_type
49
        use_se = args.use_se
R
ruri 已提交
50
        model = models.__dict__[args.model](is_test=not is_train,
51 52 53
                                            override_params=override_params,
                                            padding_type=padding_type,
                                            use_se=use_se)
54 55
    else:
        model = models.__dict__[args.model]()
R
ruri 已提交
56
    with fluid.program_guard(main_prog, startup_prog):
R
ruri 已提交
57
        if args.random_seed or args.enable_ce:
R
ruri 已提交
58 59
            main_prog.random_seed = args.random_seed
            startup_prog.random_seed = args.random_seed
R
ruri 已提交
60
        with fluid.unique_name.guard():
61
            data_loader, loss_out = create_model(model, args, is_train)
R
ruri 已提交
62
            # add backward op in program
R
ruri 已提交
63
            if is_train:
R
ruri 已提交
64 65 66 67
                optimizer = create_optimizer(args)
                avg_cost = loss_out[0]
                optimizer.minimize(avg_cost)
                #XXX: fetch learning rate now, better implement is required here. 
R
root 已提交
68
                global_lr = optimizer._global_learning_rate()
R
ruri 已提交
69 70
                global_lr.persistable = True
                loss_out.append(global_lr)
71
                if args.use_ema:
72 73 74 75
                    global_steps = fluid.layers.learning_rate_scheduler._decay_step_counter(
                    )
                    ema = ExponentialMovingAverage(
                        args.ema_decay, thres_steps=global_steps)
76 77
                    ema.update()
                    loss_out.append(ema)
78
            loss_out.append(data_loader)
R
ruri 已提交
79
    return loss_out
R
ruri 已提交
80

R
ruri 已提交
81

R
ruri 已提交
82 83 84 85 86 87 88 89
def validate(args,
             test_iter,
             exe,
             test_prog,
             test_fetch_list,
             pass_id,
             train_batch_metrics_record,
             train_batch_time_record=None):
90 91 92
    test_batch_time_record = []
    test_batch_metrics_record = []
    test_batch_id = 0
93 94 95 96 97 98 99 100 101
    for batch in test_iter:
        t1 = time.time()
        test_batch_metrics = exe.run(program=test_prog,
                                     feed=batch,
                                     fetch_list=test_fetch_list)
        t2 = time.time()
        test_batch_elapse = t2 - t1
        test_batch_time_record.append(test_batch_elapse)

R
ruri 已提交
102
        test_batch_metrics_avg = np.mean(np.array(test_batch_metrics), axis=1)
103 104
        test_batch_metrics_record.append(test_batch_metrics_avg)

R
ruri 已提交
105 106
        print_info("batch", test_batch_metrics_avg, test_batch_elapse, pass_id,
                   test_batch_id, args.print_step)
107 108
        sys.stdout.flush()
        test_batch_id += 1
109 110 111 112 113 114 115 116

    train_epoch_metrics_avg = np.mean(
        np.array(train_batch_metrics_record), axis=0)

    test_epoch_time_avg = np.mean(np.array(test_batch_time_record))
    test_epoch_metrics_avg = np.mean(
        np.array(test_batch_metrics_record), axis=0)

R
ruri 已提交
117 118 119 120 121 122 123 124 125 126 127 128
    print_info(
        "epoch",
        list(train_epoch_metrics_avg) + list(test_epoch_metrics_avg),
        test_epoch_time_avg,
        pass_id=pass_id)
    if args.enable_ce:
        device_num = fluid.core.get_cuda_device_count() if args.use_gpu else 1
        print_info(
            "ce",
            list(train_epoch_metrics_avg) + list(test_epoch_metrics_avg),
            train_batch_time_record,
            device_num=device_num)
R
ruri 已提交
129

130

R
ruri 已提交
131
def train(args):
R
ruri 已提交
132 133 134 135 136
    """Train model
    
    Args:
        args: all arguments.    
    """
R
ruri 已提交
137 138 139
    startup_prog = fluid.Program()
    train_prog = fluid.Program()
    test_prog = fluid.Program()
R
ruri 已提交
140 141 142 143 144 145

    train_out = build_program(
        is_train=True,
        main_prog=train_prog,
        startup_prog=startup_prog,
        args=args)
146
    train_data_loader = train_out[-1]
147 148 149 150 151
    if args.use_ema:
        train_fetch_vars = train_out[:-2]
        ema = train_out[-2]
    else:
        train_fetch_vars = train_out[:-1]
152 153

    train_fetch_list = [var.name for var in train_fetch_vars]
R
ruri 已提交
154 155 156 157 158 159

    test_out = build_program(
        is_train=False,
        main_prog=test_prog,
        startup_prog=startup_prog,
        args=args)
160
    test_data_loader = test_out[-1]
R
ruri 已提交
161
    test_fetch_vars = test_out[:-1]
162 163

    test_fetch_list = [var.name for var in test_fetch_vars]
R
ruri 已提交
164 165

    #Create test_prog and set layers' is_test params to True
R
ruri 已提交
166
    test_prog = test_prog.clone(for_test=True)
167

168 169
    gpu_id = int(os.environ.get('FLAGS_selected_gpus', 0))
    place = fluid.CUDAPlace(gpu_id) if args.use_gpu else fluid.CPUPlace()
170
    exe = fluid.Executor(place)
R
ruri 已提交
171
    exe.run(startup_prog)
172

173 174
    trainer_id = int(os.getenv("PADDLE_TRAINER_ID", 0))

R
ruri 已提交
175 176
    #init model by checkpoint or pretrianed model.
    init_model(exe, args, train_prog)
177
    num_trainers = int(os.environ.get('PADDLE_TRAINERS_NUM', 1))
178 179 180 181 182 183 184 185 186 187 188 189 190 191
    if args.use_dali:
        import dali
        train_iter = dali.train(settings=args)
        if trainer_id == 0:
            test_iter = dali.val(settings=args)
    else:
        imagenet_reader = reader.ImageNetReader(0 if num_trainers > 1 else None)
        train_reader = imagenet_reader.train(settings=args)
        test_reader = imagenet_reader.val(settings=args)
        places = place
        if num_trainers <= 1 and args.use_gpu:
            places = fluid.framework.cuda_places()
        train_data_loader.set_sample_list_generator(train_reader, places)
        test_data_loader.set_sample_list_generator(test_reader, place)
R
ruri 已提交
192 193

    compiled_train_prog = best_strategy_compiled(args, train_prog,
194
                                                 train_fetch_vars[0], exe)
195 196
    #NOTE: this for benchmark
    total_batch_num = 0
R
ruri 已提交
197
    for pass_id in range(args.num_epochs):
198
        if num_trainers > 1 and not args.use_dali:
R
ruri 已提交
199 200
            imagenet_reader.set_shuffle_seed(pass_id + (
                args.random_seed if args.random_seed else 0))
R
ruri 已提交
201 202 203
        train_batch_id = 0
        train_batch_time_record = []
        train_batch_metrics_record = []
R
ruri 已提交
204

205 206 207 208 209 210
        if not args.use_dali:
            train_iter = train_data_loader()
            test_iter = test_data_loader()

        t1 = time.time()
        for batch in train_iter:
211 212 213
            #NOTE: this is for benchmark
            if args.max_iter and total_batch_num == args.max_iter:
                return
214 215 216 217 218 219 220 221 222 223
            train_batch_metrics = exe.run(compiled_train_prog,
                                          feed=batch,
                                          fetch_list=train_fetch_list)
            t2 = time.time()
            train_batch_elapse = t2 - t1
            train_batch_time_record.append(train_batch_elapse)
            train_batch_metrics_avg = np.mean(
                np.array(train_batch_metrics), axis=1)
            train_batch_metrics_record.append(train_batch_metrics_avg)
            if trainer_id == 0:
R
ruri 已提交
224 225
                print_info("batch", train_batch_metrics_avg, train_batch_elapse,
                           pass_id, train_batch_id, args.print_step)
226 227 228
                sys.stdout.flush()
            train_batch_id += 1
            t1 = time.time()
229 230 231 232 233 234 235
            #NOTE: this for benchmark profiler
            total_batch_num = total_batch_num + 1
            if args.is_profiler and pass_id == 0 and train_batch_id == args.print_step:
                profiler.start_profiler("All")
            elif args.is_profiler and pass_id == 0 and train_batch_id == args.print_step + 5:
                profiler.stop_profiler("total", args.profiler_path)
                return
236 237 238

        if args.use_dali:
            train_iter.reset()
239

240
        if trainer_id == 0 and args.validate:
241 242 243
            if args.use_ema:
                print('ExponentialMovingAverage validate start...')
                with ema.apply(exe):
R
ruri 已提交
244 245
                    validate(args, test_iter, exe, test_prog, test_fetch_list,
                             pass_id, train_batch_metrics_record)
246
                print('ExponentialMovingAverage validate over!')
R
ruri 已提交
247

R
ruri 已提交
248
            validate(args, test_iter, exe, test_prog, test_fetch_list, pass_id,
R
ruri 已提交
249
                     train_batch_metrics_record, train_batch_time_record)
250 251 252
            #For now, save model per epoch.
            if pass_id % args.save_step == 0:
                save_model(args, exe, train_prog, pass_id)
253

254 255
            if args.use_dali:
                test_iter.reset()
256

R
ruri 已提交
257

258
def main():
R
ruri 已提交
259
    args = parse_args()
260 261
    if int(os.getenv("PADDLE_TRAINER_ID", 0)) == 0:
        print_arguments(args)
R
ruri 已提交
262
    check_args(args)
263
    train(args)
264

265 266 267

if __name__ == '__main__':
    main()