model.py 3.9 KB
Newer Older
T
tangwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 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 已提交
15
import math
T
tangwei 已提交
16

T
tangwei 已提交
17
import paddle.fluid as fluid
T
tangwei 已提交
18

19 20
from paddlerec.core.utils import envs
from paddlerec.core.model import Model as ModelBase
T
tangwei 已提交
21 22


T
tangwei 已提交
23
class Model(ModelBase):
T
tangwei 已提交
24
    def __init__(self, config):
T
tangwei 已提交
25
        ModelBase.__init__(self, config)
T
tangwei 已提交
26 27

    def input(self):
X
xujiaqi01 已提交
28 29 30
        self.sparse_inputs = self._sparse_data_var[1:]
        self.dense_input = self._dense_data_var[0]
        self.label_input = self._sparse_data_var[0]
T
tangwei 已提交
31

T
tangwei 已提交
32
    def net(self):
T
tangwei 已提交
33
        is_distributed = True if envs.get_trainer() == "CtrTrainer" else False
T
tangwei 已提交
34 35 36 37
        sparse_feature_number = envs.get_global_env(
            "hyper_parameters.sparse_feature_number", None, self._namespace)
        sparse_feature_dim = envs.get_global_env(
            "hyper_parameters.sparse_feature_dim", None, self._namespace)
T
tangwei 已提交
38

T
tangwei 已提交
39
        def embedding_layer(input):
T
tangwei 已提交
40 41 42
            emb = fluid.layers.embedding(
                input=input,
                is_sparse=True,
T
tangwei 已提交
43
                is_distributed=is_distributed,
T
tangwei12 已提交
44
                size=[sparse_feature_number, sparse_feature_dim],
T
tangwei 已提交
45 46
                param_attr=fluid.ParamAttr(
                    name="SparseFeatFactors",
T
tangwei 已提交
47 48
                    initializer=fluid.initializer.Uniform()), )
            emb_sum = fluid.layers.sequence_pool(input=emb, pool_type='sum')
T
tangwei 已提交
49 50 51 52
            return emb_sum

        def fc(input, output_size):
            output = fluid.layers.fc(
T
tangwei 已提交
53 54 55 56
                input=input,
                size=output_size,
                act='relu',
                param_attr=fluid.ParamAttr(
T
tangwei 已提交
57 58 59 60 61
                    initializer=fluid.initializer.Normal(
                        scale=1.0 / math.sqrt(input.shape[1]))))
            return output

        sparse_embed_seq = list(map(embedding_layer, self.sparse_inputs))
T
tangwei 已提交
62 63
        concated = fluid.layers.concat(
            sparse_embed_seq + [self.dense_input], axis=1)
T
tangwei 已提交
64 65

        fcs = [concated]
T
tangwei 已提交
66 67
        hidden_layers = envs.get_global_env("hyper_parameters.fc_sizes", None,
                                            self._namespace)
T
tangwei 已提交
68 69 70 71 72 73 74 75 76

        for size in hidden_layers:
            fcs.append(fc(fcs[-1], size))

        predict = fluid.layers.fc(
            input=fcs[-1],
            size=2,
            act="softmax",
            param_attr=fluid.ParamAttr(initializer=fluid.initializer.Normal(
T
tangwei 已提交
77
                scale=1 / math.sqrt(fcs[-1].shape[1]))))
T
tangwei 已提交
78 79 80

        self.predict = predict

T
tangwei12 已提交
81
    def avg_loss(self):
T
tangwei 已提交
82 83
        cost = fluid.layers.cross_entropy(
            input=self.predict, label=self.label_input)
T
tangwei 已提交
84 85
        avg_cost = fluid.layers.reduce_mean(cost)
        self._cost = avg_cost
T
tangwei 已提交
86

T
tangwei 已提交
87
    def metrics(self):
T
tangwei 已提交
88 89
        auc, batch_auc, _ = fluid.layers.auc(input=self.predict,
                                             label=self.label_input,
T
tangwei 已提交
90
                                             num_thresholds=2**12,
T
tangwei 已提交
91
                                             slide_steps=20)
T
tangwei 已提交
92 93
        self._metrics["AUC"] = auc
        self._metrics["BATCH_AUC"] = batch_auc
T
tangwei12 已提交
94

T
tangwei 已提交
95
    def train_net(self):
X
xjqbest 已提交
96
        self._init_slots()
T
tangwei 已提交
97 98 99 100 101
        self.input()
        self.net()
        self.avg_loss()
        self.metrics()

T
tangwei 已提交
102
    def optimizer(self):
T
tangwei 已提交
103 104
        learning_rate = envs.get_global_env("hyper_parameters.learning_rate",
                                            None, self._namespace)
T
tangwei 已提交
105 106 107
        optimizer = fluid.optimizer.Adam(learning_rate, lazy_mode=True)
        return optimizer

T
tangwei 已提交
108
    def infer_net(self):
X
xjqbest 已提交
109
        self._init_slots()
T
tangwei 已提交
110 111
        self.input()
        self.net()