esmm_reader.py 2.4 KB
Newer Older
Z
zhangwenhui03 已提交
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.
T
tangwei 已提交
14

Z
zhangwenhui03 已提交
15 16 17
from __future__ import print_function

from collections import defaultdict
T
tangwei 已提交
18 19

from paddlerec.core.reader import Reader
Z
zhangwenhui03 已提交
20 21 22 23


class TrainReader(Reader):
    def init(self):
T
tangwei 已提交
24 25 26 27 28
        all_field_id = [
            '101', '109_14', '110_14', '127_14', '150_14', '121', '122', '124',
            '125', '126', '127', '128', '129', '205', '206', '207', '210',
            '216', '508', '509', '702', '853', '301'
        ]
Z
zhangwenhui03 已提交
29
        self.all_field_id_dict = defaultdict(int)
T
for mat  
tangwei 已提交
30 31
        for i, field_id in enumerate(all_field_id):
            self.all_field_id_dict[field_id] = [False, i]
Z
zhangwenhui03 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44

    def generate_sample(self, line):
        """
        Read the data line by line and process it as a dictionary
        """

        def reader():
            """
            This function needs to be implemented by the user, based on data format
            """
            features = line.strip().split(',')
            ctr = int(features[1])
            cvr = int(features[2])
T
for mat  
tangwei 已提交
45

Z
zhangwenhui03 已提交
46
            padding = 0
T
for mat  
tangwei 已提交
47
            output = [(field_id, []) for field_id in self.all_field_id_dict]
Z
zhangwenhui03 已提交
48 49

            for elem in features[4:]:
T
for mat  
tangwei 已提交
50
                field_id, feat_id = elem.strip().split(':')
Z
zhangwenhui03 已提交
51 52 53 54
                if field_id not in self.all_field_id_dict:
                    continue
                self.all_field_id_dict[field_id][0] = True
                index = self.all_field_id_dict[field_id][1]
T
for mat  
tangwei 已提交
55 56
                output[index][1].append(int(feat_id))

Z
zhangwenhui03 已提交
57
            for field_id in self.all_field_id_dict:
T
for mat  
tangwei 已提交
58
                visited, index = self.all_field_id_dict[field_id]
Z
zhangwenhui03 已提交
59 60 61
                if visited:
                    self.all_field_id_dict[field_id][0] = False
                else:
T
for mat  
tangwei 已提交
62
                    output[index][1].append(padding)
Z
zhangwenhui03 已提交
63 64 65
            output.append(('ctr', [ctr]))
            output.append(('cvr', [cvr]))
            yield output
T
for mat  
tangwei 已提交
66

Z
zhangwenhui03 已提交
67
        return reader