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

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

import os
import sys
import numpy as np
import paddle
D
dyning 已提交
24 25
import signal
import random
W
WenmuZhou 已提交
26 27 28 29 30

__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))

import copy
D
dyning 已提交
31
from paddle.io import Dataset, DataLoader, BatchSampler, DistributedBatchSampler
W
WenmuZhou 已提交
32 33 34
import paddle.distributed as dist

from ppocr.data.imaug import transform, create_operators
D
dyning 已提交
35
from ppocr.data.simple_dataset import SimpleDataSet
T
tink2123 已提交
36
from ppocr.data.lmdb_dataset import LMDBDataSet
37
from ppocr.data.pgnet_dataset import PGDataSet
M
MissPenguin 已提交
38
from ppocr.data.pubtab_dataset import PubTabDataSet
W
WenmuZhou 已提交
39 40 41

__all__ = ['build_dataloader', 'transform', 'create_operators']

D
dyning 已提交
42

D
dyning 已提交
43 44 45 46 47 48 49
def term_mp(sig_num, frame):
    """ kill all child processes
    """
    pid = os.getpid()
    pgid = os.getpgid(os.getpid())
    print("main proc {} exit, kill process group " "{}".format(pid, pgid))
    os.killpg(pgid, signal.SIGKILL)
W
WenmuZhou 已提交
50

D
dyning 已提交
51

52
def build_dataloader(config, mode, device, logger, seed=None):
D
dyning 已提交
53
    config = copy.deepcopy(config)
D
dyning 已提交
54

littletomatodonkey's avatar
littletomatodonkey 已提交
55 56 57
    support_dict = [
        'SimpleDataSet', 'LMDBDataSet', 'PGDataSet', 'PubTabDataSet'
    ]
D
dyning 已提交
58
    module_name = config[mode]['dataset']['name']
W
WenmuZhou 已提交
59 60
    assert module_name in support_dict, Exception(
        'DataSet only support {}'.format(support_dict))
D
dyning 已提交
61 62 63
    assert mode in ['Train', 'Eval', 'Test'
                    ], "Mode should be Train, Eval or Test."

64
    dataset = eval(module_name)(config, mode, logger, seed)
D
dyning 已提交
65 66 67
    loader_config = config[mode]['loader']
    batch_size = loader_config['batch_size_per_card']
    drop_last = loader_config['drop_last']
L
LDOUBLEV 已提交
68
    shuffle = loader_config['shuffle']
D
dyning 已提交
69
    num_workers = loader_config['num_workers']
70 71 72 73
    if 'use_shared_memory' in loader_config.keys():
        use_shared_memory = loader_config['use_shared_memory']
    else:
        use_shared_memory = True
D
dyning 已提交
74
    if mode == "Train":
J
Jethong 已提交
75
        # Distribute data to multiple cards
D
dyning 已提交
76 77 78
        batch_sampler = DistributedBatchSampler(
            dataset=dataset,
            batch_size=batch_size,
L
LDOUBLEV 已提交
79
            shuffle=shuffle,
D
dyning 已提交
80
            drop_last=drop_last)
W
WenmuZhou 已提交
81
    else:
J
Jethong 已提交
82
        # Distribute data to single card
D
dyning 已提交
83 84 85
        batch_sampler = BatchSampler(
            dataset=dataset,
            batch_size=batch_size,
L
LDOUBLEV 已提交
86
            shuffle=shuffle,
D
dyning 已提交
87 88
            drop_last=drop_last)

D
dyning 已提交
89 90 91 92 93
    data_loader = DataLoader(
        dataset=dataset,
        batch_sampler=batch_sampler,
        places=device,
        num_workers=num_workers,
94 95
        return_list=True,
        use_shared_memory=use_shared_memory)
D
dyning 已提交
96

littletomatodonkey's avatar
littletomatodonkey 已提交
97 98 99 100
    # support exit using ctrl+c
    signal.signal(signal.SIGINT, term_mp)
    signal.signal(signal.SIGTERM, term_mp)

D
dyning 已提交
101
    return data_loader