reader.py 3.4 KB
Newer Older
L
Li Fuchen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#   Copyright (c) 2019 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.
Y
Yibing Liu 已提交
14 15 16 17 18 19 20 21 22 23 24 25
"""
EmoTect Reader, data converters for classification data.
"""
import os

import paddle
import paddle.fluid as fluid
import numpy as np

from utils import load_vocab
from utils import data_reader

L
Li Fuchen 已提交
26

Y
Yibing Liu 已提交
27 28 29 30
class EmoTectProcessor(object):
    """
    Processor class for data convertors for EmoTect.
    """
L
Li Fuchen 已提交
31 32

    def __init__(self, data_dir, vocab_path, random_seed=None):
Y
Yibing Liu 已提交
33 34 35 36 37 38 39 40 41
        self.data_dir = data_dir
        self.vocab = load_vocab(vocab_path)
        self.num_examples = {"train": -1, "dev": -1, "test": -1, "infer": -1}
        np.random.seed(random_seed)

    def get_train_examples(self, data_dir, epoch=1):
        """
        Load training examples
        """
L
Li Fuchen 已提交
42 43 44
        return data_reader(
            os.path.join(self.data_dir, "train.tsv"), self.vocab,
            self.num_examples, "train", epoch)
Y
Yibing Liu 已提交
45 46 47 48 49

    def get_dev_examples(self, data_dir):
        """
        Load dev examples
        """
L
Li Fuchen 已提交
50 51 52
        return data_reader(
            os.path.join(self.data_dir, "dev.tsv"), self.vocab,
            self.num_examples, "dev")
Y
Yibing Liu 已提交
53 54 55 56 57

    def get_test_examples(self, data_dir):
        """
        Load test examples
        """
L
Li Fuchen 已提交
58 59 60
        return data_reader(
            os.path.join(self.data_dir, "test.tsv"), self.vocab,
            self.num_examples, "test")
Y
Yibing Liu 已提交
61 62 63 64 65

    def get_infer_examples(self, data_dir):
        """
        Load infer querys
        """
L
Li Fuchen 已提交
66 67 68
        return data_reader(
            os.path.join(self.data_dir, "infer.tsv"), self.vocab,
            self.num_examples, "infer")
Y
Yibing Liu 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81

    def get_labels(self):
        """
        Return Labels
        """
        return ["0", "1", "2"]

    def get_num_examples(self, phase):
        """
        Return num of examples in train, dev, test set
        """
        if phase not in ['train', 'dev', 'test', 'infer']:
            raise ValueError(
L
Li Fuchen 已提交
82 83
                "Unknown phase, which should be in ['train', 'dev', 'test', 'infer']."
            )
Y
Yibing Liu 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96
        return self.num_examples[phase]

    def get_train_progress(self):
        """
        Get train progress
        """
        return self.current_train_example, self.current_train_epoch

    def data_generator(self, batch_size, phase='train', epoch=1):
        """
        Generate data for train, dev or test
        """
        if phase == "train":
L
Li Fuchen 已提交
97 98
            return paddle.batch(
                self.get_train_examples(self.data_dir, epoch), batch_size)
Y
Yibing Liu 已提交
99
        elif phase == "dev":
L
Li Fuchen 已提交
100 101
            return paddle.batch(
                self.get_dev_examples(self.data_dir), batch_size)
Y
Yibing Liu 已提交
102
        elif phase == "test":
L
Li Fuchen 已提交
103 104
            return paddle.batch(
                self.get_test_examples(self.data_dir), batch_size)
Y
Yibing Liu 已提交
105
        elif phase == "infer":
L
Li Fuchen 已提交
106 107
            return paddle.batch(
                self.get_infer_examples(self.data_dir), batch_size)
Y
Yibing Liu 已提交
108 109
        else:
            raise ValueError(
L
Li Fuchen 已提交
110 111
                "Unknown phase, which should be in ['train', 'dev', 'test', 'infer']."
            )