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

import argparse
import os

from paddle.fluid.dygraph.base import to_variable
import numpy as np
import paddle.fluid as fluid

C
chenguowei01 已提交
22
from datasets import Dataset
C
chenguowei01 已提交
23 24 25 26
import transforms as T
import models
import utils.logging as logging
from utils import get_environ_info
C
chenguowei01 已提交
27
from utils import load_pretrained_model
C
chenguowei01 已提交
28
from val import evaluate
C
chenguowei01 已提交
29 30 31 32 33 34


def parse_args():
    parser = argparse.ArgumentParser(description='Model training')

    # params of model
C
chenguowei01 已提交
35 36 37 38 39
    parser.add_argument('--model_name',
                        dest='model_name',
                        help="Model type for traing, which is one of ('UNet')",
                        type=str,
                        default='UNet')
C
chenguowei01 已提交
40 41

    # params of dataset
C
chenguowei01 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    parser.add_argument('--data_dir',
                        dest='data_dir',
                        help='The root directory of dataset',
                        type=str)
    parser.add_argument('--train_list',
                        dest='train_list',
                        help='Train list file of dataset',
                        type=str)
    parser.add_argument('--val_list',
                        dest='val_list',
                        help='Val list file of dataset',
                        type=str,
                        default=None)
    parser.add_argument('--num_classes',
                        dest='num_classes',
                        help='Number of classes',
                        type=int,
                        default=2)
C
chenguowei01 已提交
60 61

    # params of training
C
chenguowei01 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    parser.add_argument("--input_size",
                        dest="input_size",
                        help="The image size for net inputs.",
                        nargs=2,
                        default=[512, 512],
                        type=int)
    parser.add_argument('--num_epochs',
                        dest='num_epochs',
                        help='Number epochs for training',
                        type=int,
                        default=100)
    parser.add_argument('--batch_size',
                        dest='batch_size',
                        help='Mini batch size',
                        type=int,
                        default=2)
    parser.add_argument('--learning_rate',
                        dest='learning_rate',
                        help='Learning rate',
                        type=float,
                        default=0.01)
    parser.add_argument('--pretrained_model',
                        dest='pretrained_model',
                        help='The path of pretrianed weight',
                        type=str,
                        default=None)
    parser.add_argument('--save_interval_epochs',
                        dest='save_interval_epochs',
                        help='The interval epochs for save a model snapshot',
                        type=int,
                        default=5)
    parser.add_argument('--save_dir',
                        dest='save_dir',
                        help='The directory for saving the model snapshot',
                        type=str,
                        default='./output')
C
chenguowei01 已提交
98 99 100 101 102 103 104 105 106 107 108 109

    return parser.parse_args()


def train(model,
          train_dataset,
          eval_dataset=None,
          optimizer=None,
          save_dir='output',
          num_epochs=100,
          batch_size=2,
          pretrained_model=None,
C
chenguowei01 已提交
110 111
          save_interval_epochs=1,
          num_classes=None):
C
chenguowei01 已提交
112 113
    if not os.path.isdir(save_dir):
        if os.path.exists(save_dir):
C
chenguowei01 已提交
114 115 116
            os.remove(save_dir)
        os.makedirs(save_dir)

C
chenguowei01 已提交
117 118
    load_pretrained_model(model, pretrained_model)

C
chenguowei01 已提交
119 120
    data_generator = train_dataset.generator(batch_size=batch_size,
                                             drop_last=True)
C
chenguowei01 已提交
121 122 123 124 125
    num_steps_each_epoch = train_dataset.num_samples // args.batch_size

    for epoch in range(num_epochs):
        for step, data in enumerate(data_generator()):
            images = np.array([d[0] for d in data])
C
chenguowei01 已提交
126
            labels = np.array([d[2] for d in data]).astype('int64')
C
chenguowei01 已提交
127 128 129 130 131 132 133 134 135 136 137 138
            images = to_variable(images)
            labels = to_variable(labels)
            loss = model(images, labels, mode='train')
            loss.backward()
            optimizer.minimize(loss)
            logging.info("[TRAIN] Epoch={}/{}, Step={}/{}, loss={}".format(
                epoch + 1, num_epochs, step + 1, num_steps_each_epoch,
                loss.numpy()))

        if (
                epoch + 1
        ) % save_interval_epochs == 0 or num_steps_each_epoch == num_epochs - 1:
C
chenguowei01 已提交
139 140 141
            current_save_dir = os.path.join(save_dir,
                                            "epoch_{}".format(epoch + 1))
            if not os.path.isdir(current_save_dir):
C
chenguowei01 已提交
142 143
                os.makedirs(current_save_dir)
            fluid.save_dygraph(model.state_dict(),
C
chenguowei01 已提交
144
                               os.path.join(current_save_dir, 'model'))
C
chenguowei01 已提交
145

C
chenguowei01 已提交
146 147
            if eval_dataset is not None:
                model.eval()
C
chenguowei01 已提交
148 149 150 151 152 153 154
                evaluate(model,
                         eval_dataset,
                         model_dir=current_save_dir,
                         num_classes=num_classes,
                         batch_size=batch_size,
                         ignore_index=model.ignore_index,
                         epoch_id=epoch + 1)
C
chenguowei01 已提交
155
                model.train()
C
chenguowei01 已提交
156 157 158


def main(args):
C
chenguowei01 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
    with fluid.dygraph.guard(places):
        # Creat dataset reader
        train_transforms = T.Compose([
            T.Resize(args.input_size),
            T.RandomHorizontalFlip(),
            T.Normalize()
        ])
        train_dataset = Dataset(data_dir=args.data_dir,
                                file_list=args.train_list,
                                transforms=train_transforms,
                                num_workers='auto',
                                buffer_size=100,
                                parallel_method='thread',
                                shuffle=True)
        if args.val_list is not None:
            eval_transforms = T.Compose(
                [T.Resize(args.input_size),
                 T.Normalize()])
            eval_dataset = Dataset(data_dir=args.data_dir,
                                   file_list=args.val_list,
                                   transforms=eval_transforms,
                                   num_workers='auto',
                                   buffer_size=100,
                                   parallel_method='thread',
                                   shuffle=False)

        if args.model_name == 'UNet':
            model = models.UNet(num_classes=args.num_classes, ignore_index=255)

        # Creat optimizer
        num_steps_each_epoch = train_dataset.num_samples // args.batch_size
        decay_step = args.num_epochs * num_steps_each_epoch
        lr_decay = fluid.layers.polynomial_decay(args.learning_rate,
                                                 decay_step,
                                                 end_learning_rate=0,
                                                 power=0.9)
        optimizer = fluid.optimizer.Momentum(
            lr_decay,
            momentum=0.9,
            parameter_list=model.parameters(),
            regularization=fluid.regularizer.L2Decay(regularization_coeff=4e-5))

        train(model,
              train_dataset,
              eval_dataset,
              optimizer,
              save_dir=args.save_dir,
              num_epochs=args.num_epochs,
              batch_size=args.batch_size,
              pretrained_model=args.pretrained_model,
              save_interval_epochs=args.save_interval_epochs,
              num_classes=args.num_classes)
C
chenguowei01 已提交
211 212 213 214 215 216 217 218 219


if __name__ == '__main__':
    args = parse_args()
    env_info = get_environ_info()
    if env_info['place'] == 'cpu':
        places = fluid.CPUPlace()
    else:
        places = fluid.CUDAPlace(0)
C
chenguowei01 已提交
220
    main(args)