dataloader_instance.py 2.4 KB
Newer Older
T
tangwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#   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 print_function

import os
import sys

19 20 21
from paddlerec.core.utils.envs import lazy_instance_by_fliename
from paddlerec.core.utils.envs import get_global_env
from paddlerec.core.utils.envs import get_runtime_environ
T
tangwei 已提交
22 23 24 25 26


def dataloader(readerclass, train, yaml_file):
    if train == "TRAIN":
        reader_name = "TrainReader"
M
malin10 已提交
27
        namespace = "train.reader"
T
tangwei 已提交
28 29 30
        data_path = get_global_env("train_data_path", None, namespace)
    else:
        reader_name = "EvaluateReader"
M
malin10 已提交
31
        namespace = "evaluate.reader"
T
tangwei 已提交
32 33
        data_path = get_global_env("test_data_path", None, namespace)

34
    if data_path.startswith("paddlerec::"):
T
tangwei 已提交
35 36 37 38
        package_base = get_runtime_environ("PACKAGE_BASE")
        assert package_base is not None
        data_path = os.path.join(package_base, data_path.split("::")[1])

T
tangwei 已提交
39 40
    files = [str(data_path) + "/%s" % x for x in os.listdir(data_path)]

T
tangwei 已提交
41
    reader_class = lazy_instance_by_fliename(readerclass, reader_name)
T
tangwei 已提交
42 43 44 45 46 47 48
    reader = reader_class(yaml_file)
    reader.init()

    def gen_reader():
        for file in files:
            with open(file, 'r') as f:
                for line in f:
T
tangwei 已提交
49
                    line = line.rstrip('\n')
T
tangwei 已提交
50 51 52 53 54 55 56 57 58
                    iter = reader.generate_sample(line)
                    for parsed_line in iter():
                        if parsed_line is None:
                            continue
                        else:
                            values = []
                            for pased in parsed_line:
                                values.append(pased[1])
                            yield values
T
tangwei 已提交
59

Y
add din  
yaoxuefeng 已提交
60 61 62 63 64
    def gen_batch_reader():
        return reader.generate_batch_from_trainfiles(files)

    if hasattr(reader, 'generate_batch_from_trainfiles'):
        return gen_batch_reader()
T
tangwei 已提交
65
    return gen_reader