evaluate_reader.py 2.1 KB
Newer Older
M
malin10 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
# 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.
import numpy as np
import io
import copy
import random
from fleetrec.core.reader import Reader
from fleetrec.core.utils import envs


class EvaluateReader(Reader):
    def init(self):
        self.query_slots = envs.get_global_env("hyper_parameters.query_slots", None, "train.model") 
        self.title_slots = envs.get_global_env("hyper_parameters.title_slots", None, "train.model") 

        self.all_slots = []
        for i in range(self.query_slots):
M
debug  
malin10 已提交
29
            self.all_slots.append(str(i))
M
malin10 已提交
30 31

        for i in range(self.title_slots):
M
debug  
malin10 已提交
32
            self.all_slots.append(str(i + self.query_slots))
M
malin10 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

        self._all_slots_dict = dict()
        for index, slot in enumerate(self.all_slots):
            self._all_slots_dict[slot] = [False, index]

    def generate_sample(self, line):
        def data_iter():
            elements = line.rstrip().split()
            padding = 0
            output = [(slot, []) for slot in self.all_slots]
            for elem in elements:
                feasign, slot = elem.split(':')
                if not self._all_slots_dict.has_key(slot):
                    continue
                self._all_slots_dict[slot][0] = True
                index = self._all_slots_dict[slot][1]
                output[index][1].append(int(feasign))
            for slot in self._all_slots_dict:
                visit, index = self._all_slots_dict[slot]
                if visit:
                    self._all_slots_dict[slot][0] = False
                else:
                    output[index][1].append(padding) 
            yield output
        return data_iter