__init__.py 2.89 KB
Newer Older
LDOUBLEV's avatar
LDOUBLEV committed
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.
WenmuZhou's avatar
WenmuZhou committed
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
dyning's avatar
dyning committed
24
25
import signal
import random
WenmuZhou's avatar
WenmuZhou committed
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
dyning's avatar
dyning committed
31
from paddle.io import Dataset, DataLoader, BatchSampler, DistributedBatchSampler
WenmuZhou's avatar
WenmuZhou committed
32
33
34
import paddle.distributed as dist

from ppocr.data.imaug import transform, create_operators
dyning's avatar
dyning committed
35
36
from ppocr.data.simple_dataset import SimpleDataSet
from ppocr.data.lmdb_dataset import LMDBDateSet
WenmuZhou's avatar
WenmuZhou committed
37
38
39

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

dyning's avatar
dyning committed
40
41
42
43
44
45
46
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)
WenmuZhou's avatar
WenmuZhou committed
47

dyning's avatar
dyning committed
48
49
signal.signal(signal.SIGINT, term_mp)
signal.signal(signal.SIGTERM, term_mp)
WenmuZhou's avatar
WenmuZhou committed
50

dyning's avatar
dyning committed
51
52
53
54
55
def build_dataloader(config, mode, device):
    config = copy.deepcopy(config)
    
    support_dict = ['SimpleDataSet', 'LMDBDateSet']
    module_name = config[mode]['dataset']['name']
WenmuZhou's avatar
WenmuZhou committed
56
57
    assert module_name in support_dict, Exception(
        'DataSet only support {}'.format(support_dict))
dyning's avatar
dyning committed
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
    assert mode in ['Train', 'Eval', 'Test'], "Mode should be Train, Eval or Test."
    
    dataset = eval(module_name)(config, mode)
    loader_config = config[mode]['loader']
    batch_size = loader_config['batch_size_per_card']
    drop_last = loader_config['drop_last']
    num_workers = loader_config['num_workers']
    
    if mode == "Train":
        #Distribute data to multiple cards
        batch_sampler = DistributedBatchSampler(
            dataset=dataset,
            batch_size=batch_size,
            shuffle=False,
            drop_last=drop_last)
WenmuZhou's avatar
WenmuZhou committed
73
    else:
dyning's avatar
dyning committed
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
        #Distribute data to single card
        batch_sampler = BatchSampler(
            dataset=dataset,
            batch_size=batch_size,
            shuffle=False,
            drop_last=drop_last)        
    
    data_loader = DataLoader(
        dataset=dataset,
        batch_sampler=batch_sampler,
        places=device,
        num_workers=num_workers,
        return_list=True)
    
    return data_loader
    #return data_loader, _dataset.info_dict