train.py 4.6 KB
Newer Older
L
LDOUBLEV 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# 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

import os
import sys
W
WenmuZhou 已提交
21

22
__dir__ = os.path.dirname(os.path.abspath(__file__))
L
LDOUBLEV 已提交
23
sys.path.append(__dir__)
24
sys.path.append(os.path.abspath(os.path.join(__dir__, '..')))
L
LDOUBLEV 已提交
25

W
WenmuZhou 已提交
26 27 28
import yaml
import paddle
import paddle.distributed as dist
L
LDOUBLEV 已提交
29

D
dyning 已提交
30
paddle.seed(2)
L
LDOUBLEV 已提交
31

W
WenmuZhou 已提交
32
from ppocr.data import build_dataloader
D
dyning 已提交
33 34
from ppocr.modeling.architectures import build_model
from ppocr.losses import build_loss
W
WenmuZhou 已提交
35 36 37
from ppocr.optimizer import build_optimizer
from ppocr.postprocess import build_post_process
from ppocr.metrics import build_metric
D
Double_V 已提交
38
from ppocr.utils.save_load import init_model, load_dygraph_params
W
WenmuZhou 已提交
39
import tools.program as program
L
LDOUBLEV 已提交
40

W
WenmuZhou 已提交
41
dist.get_world_size()
L
LDOUBLEV 已提交
42 43


W
WenmuZhou 已提交
44 45 46 47
def main(config, device, logger, vdl_writer):
    # init dist environment
    if config['Global']['distributed']:
        dist.init_parallel_env()
L
LDOUBLEV 已提交
48

W
WenmuZhou 已提交
49
    global_config = config['Global']
D
dyning 已提交
50

W
WenmuZhou 已提交
51
    # build dataloader
D
dyning 已提交
52
    train_dataloader = build_dataloader(config, 'Train', device, logger)
W
WenmuZhou 已提交
53 54
    if len(train_dataloader) == 0:
        logger.error(
55 56 57 58
            "No Images in train dataset, please ensure\n" +
            "\t1. The images num in the train label_file_list should be larger than or equal with batch size.\n"
            +
            "\t2. The annotation file and path in the configuration file are provided normally."
W
WenmuZhou 已提交
59
        )
W
WenmuZhou 已提交
60
        return
W
WenmuZhou 已提交
61

D
dyning 已提交
62
    if config['Eval']:
D
dyning 已提交
63
        valid_dataloader = build_dataloader(config, 'Eval', device, logger)
W
WenmuZhou 已提交
64
    else:
D
dyning 已提交
65 66
        valid_dataloader = None

W
WenmuZhou 已提交
67
    # build post process
D
dyning 已提交
68 69 70
    post_process_class = build_post_process(config['PostProcess'],
                                            global_config)

W
WenmuZhou 已提交
71
    # build model
W
WenmuZhou 已提交
72
    # for rec algorithm
W
WenmuZhou 已提交
73
    if hasattr(post_process_class, 'character'):
D
dyning 已提交
74
        char_num = len(getattr(post_process_class, 'character'))
littletomatodonkey's avatar
littletomatodonkey 已提交
75 76 77 78 79 80 81 82
        if config['Architecture']["algorithm"] in ["Distillation",
                                                   ]:  # distillation model
            for key in config['Architecture']["Models"]:
                config['Architecture']["Models"][key]["Head"][
                    'out_channels'] = char_num
        else:  # base rec model
            config['Architecture']["Head"]['out_channels'] = char_num

W
WenmuZhou 已提交
83 84 85 86
    model = build_model(config['Architecture'])
    if config['Global']['distributed']:
        model = paddle.DataParallel(model)

D
dyning 已提交
87 88
    # build loss
    loss_class = build_loss(config['Loss'])
D
dyning 已提交
89

W
WenmuZhou 已提交
90
    # build optim
D
dyning 已提交
91 92
    optimizer, lr_scheduler = build_optimizer(
        config['Optimizer'],
W
WenmuZhou 已提交
93
        epochs=config['Global']['epoch_num'],
D
dyning 已提交
94
        step_each_epoch=len(train_dataloader),
W
WenmuZhou 已提交
95 96 97 98
        parameters=model.parameters())

    # build metric
    eval_class = build_metric(config['Metric'])
D
dyning 已提交
99
    # load pretrain model
D
Double_V 已提交
100
    pre_best_model_dict = load_dygraph_params(config, model, logger, optimizer)
101 102 103 104
    logger.info('train dataloader has {} iters'.format(len(train_dataloader)))
    if valid_dataloader is not None:
        logger.info('valid dataloader has {} iters'.format(
            len(valid_dataloader)))
W
WenmuZhou 已提交
105
    # start train
D
dyning 已提交
106 107 108
    program.train(config, train_dataloader, valid_dataloader, device, model,
                  loss_class, optimizer, lr_scheduler, post_process_class,
                  eval_class, pre_best_model_dict, logger, vdl_writer)
D
dyning 已提交
109 110 111


def test_reader(config, device, logger):
W
WenmuZhou 已提交
112
    loader = build_dataloader(config, 'Train', device, logger)
113 114 115 116
    import time
    starttime = time.time()
    count = 0
    try:
D
dyning 已提交
117
        for data in loader():
118 119 120 121
            count += 1
            if count % 1 == 0:
                batch_time = time.time() - starttime
                starttime = time.time()
W
WenmuZhou 已提交
122 123
                logger.info("reader: {}, {}, {}".format(
                    count, len(data[0]), batch_time))
124
    except Exception as e:
L
LDOUBLEV 已提交
125 126
        logger.info(e)
    logger.info("finish reader: {}, Success!".format(count))
127

D
dyning 已提交
128

L
LDOUBLEV 已提交
129
if __name__ == '__main__':
130
    config, device, logger, vdl_writer = program.preprocess(is_train=True)
D
dyning 已提交
131
    main(config, device, logger, vdl_writer)
W
WenmuZhou 已提交
132
    # test_reader(config, device, logger)