layer_helper.py 7.8 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#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
Yu Yang 已提交
14 15 16
import copy
import itertools

Q
Qiao Longfei 已提交
17
from framework import Variable, Parameter, default_main_program, default_startup_program, \
Y
Yu Yang 已提交
18
    unique_name, dtype_is_floating
19
from paddle.v2.fluid.initializer import Constant, Xavier
Y
Yu Yang 已提交
20
from param_attr import ParamAttr
Y
Yu Yang 已提交
21

Y
Yu Yang 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35

class LayerHelper(object):
    def __init__(self, layer_type, **kwargs):
        self.kwargs = kwargs
        self.layer_type = layer_type
        name = self.kwargs.get('name', None)
        if name is None:
            self.kwargs['name'] = unique_name(self.layer_type)

    @property
    def name(self):
        return self.kwargs['name']

    @property
36
    def main_program(self):
37
        return default_main_program()
Y
Yu Yang 已提交
38

Q
QI JUN 已提交
39
    @property
40
    def startup_program(self):
41
        return default_startup_program()
Q
QI JUN 已提交
42

Y
Yu Yang 已提交
43
    def append_op(self, *args, **kwargs):
44
        return self.main_program.current_block().append_op(*args, **kwargs)
Y
Yu Yang 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

    def multiple_input(self, input_param_name='input'):
        inputs = self.kwargs.get(input_param_name, [])
        type_error = TypeError(
            "Input of {0} layer should be Variable or sequence of Variable".
            format(self.layer_type))
        if isinstance(inputs, Variable):
            inputs = [inputs]
        elif not isinstance(inputs, list) and not isinstance(inputs, tuple):
            raise type_error
        else:
            for each in inputs:
                if not isinstance(each, Variable):
                    raise type_error
        return inputs

    def input(self, input_param_name='input'):
        inputs = self.multiple_input(input_param_name)
        if len(inputs) != 1:
            raise "{0} layer only takes one input".format(self.layer_type)
        return inputs[0]

    @property
    def param_attr(self):
Y
Yu Yang 已提交
69
        return ParamAttr.to_attr(self.kwargs.get('param_attr', None))
Y
Yu Yang 已提交
70

Q
QI JUN 已提交
71
    @property
Q
QI JUN 已提交
72
    def bias_attr(self):
Y
Yu Yang 已提交
73
        return ParamAttr.to_attr(self.kwargs.get('bias_attr', None))
Y
Yu Yang 已提交
74 75 76

    def multiple_param_attr(self, length):
        param_attr = self.param_attr
Y
Yu Yang 已提交
77
        if isinstance(param_attr, ParamAttr):
Y
Yu Yang 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
            param_attr = [param_attr]

        if len(param_attr) != 1 and len(param_attr) != length:
            raise ValueError("parameter number mismatch")
        elif len(param_attr) == 1 and length != 1:
            tmp = [None] * length
            for i in xrange(length):
                tmp[i] = copy.deepcopy(param_attr[0])
            param_attr = tmp
        return param_attr

    def iter_inputs_and_params(self, input_param_name='input'):
        inputs = self.multiple_input(input_param_name)
        param_attrs = self.multiple_param_attr(len(inputs))
        for ipt, param_attr in itertools.izip(inputs, param_attrs):
            yield ipt, param_attr

    def input_dtype(self, input_param_name='input'):
        inputs = self.multiple_input(input_param_name)
        dtype = None
        for each in inputs:
            if dtype is None:
F
fengjiayi 已提交
100 101
                dtype = each.dtype
            elif dtype != each.dtype:
Y
Yu Yang 已提交
102 103 104
                raise ValueError("Data Type mismatch")
        return dtype

Y
Yu Yang 已提交
105 106 107 108 109 110
    def create_parameter(self,
                         attr,
                         shape,
                         dtype,
                         is_bias=False,
                         default_initializer=None):
111
        # Deepcopy the attr so that parameters can be shared in program
Y
Yu Yang 已提交
112 113 114 115 116 117 118 119
        assert isinstance(attr, ParamAttr)
        suffix = 'b' if is_bias else 'w'

        if default_initializer is None:
            if is_bias:
                attr.set_default_bias_initializer()
            else:
                attr.set_default_param_initializer()
120
        else:
Y
Yu Yang 已提交
121 122 123 124
            attr.set_default_initializer(default_initializer)
        if attr.name is None:
            attr.name = unique_name(".".join([self.name, suffix]))

125
        self.startup_program.global_block().create_parameter(
Y
Yu Yang 已提交
126
            dtype=dtype, shape=shape, **attr.to_kwargs(with_initializer=True))
127
        return self.main_program.global_block().create_parameter(
Y
Yu Yang 已提交
128
            dtype=dtype, shape=shape, **attr.to_kwargs())
Y
Yu Yang 已提交
129

Q
Qiao Longfei 已提交
130 131 132 133 134 135
    def get_parameter(self, name):
        param = self.main_program.global_block().var(name)
        if not isinstance(param, Parameter):
            raise ValueError("no Parameter name %s found" % name)
        return param

Q
QI JUN 已提交
136
    def create_tmp_variable(self, dtype, stop_gradient=False):
137
        return self.main_program.current_block().create_var(
Q
QI JUN 已提交
138 139
            name=unique_name(".".join([self.name, 'tmp'])),
            dtype=dtype,
Q
QI JUN 已提交
140 141
            persistable=False,
            stop_gradient=stop_gradient)
Y
Yu Yang 已提交
142

Y
Yu Yang 已提交
143
    def create_variable(self, *args, **kwargs):
144
        return self.main_program.current_block().create_var(*args, **kwargs)
Y
Yu Yang 已提交
145

Q
Qiao Longfei 已提交
146
    def create_global_variable(self, persistable=False, *args, **kwargs):
147
        return self.main_program.global_block().create_var(
Q
Qiao Longfei 已提交
148 149 150 151
            *args, persistable=persistable, **kwargs)

    def set_variable_initializer(self, var, initializer):
        assert isinstance(var, Variable)
152
        self.startup_program.global_block().create_var(
Q
Qiao Longfei 已提交
153 154
            name=var.name,
            type=var.type,
F
fengjiayi 已提交
155
            dtype=var.dtype,
Q
Qiao Longfei 已提交
156 157 158
            shape=var.shape,
            persistable=True,
            initializer=initializer)
Y
Yu Yang 已提交
159

Y
Yu Yang 已提交
160
    def append_bias_op(self, input_var, dim_start=1, dim_end=None):
161
        """
X
xuwei06 已提交
162
        Append bias operator and return its output. If the user does not set
163
        bias_attr, append_bias_op will return input_var
X
xuwei06 已提交
164

165 166 167 168
        :param input_var: the input variable. The len(input_var.shape) is
        larger or equal than 2.
        :bias_initializer: an instance of a subclass of Initializer used to
        initialize the bias
X
xuwei06 已提交
169 170
        :param dim_start:
        :param dim_end: the shape of the bias will be
X
xuwei06 已提交
171
        input_var.shape[dim_start:dim_end]. The bias is broadcasted to other
X
xuwei06 已提交
172
        dimensions and added to input_var to get the output
173
        """
X
xuwei06 已提交
174
        size = list(input_var.shape[dim_start:dim_end])
Q
QI JUN 已提交
175
        bias_attr = self.bias_attr
Y
Yu Yang 已提交
176 177
        if not bias_attr:
            return input_var
178

Y
Yu Yang 已提交
179
        b = self.create_parameter(
Y
Yu Yang 已提交
180
            attr=bias_attr, shape=size, dtype=input_var.dtype, is_bias=True)
F
fengjiayi 已提交
181
        tmp = self.create_tmp_variable(dtype=input_var.dtype)
Y
Yu Yang 已提交
182 183 184 185
        self.append_op(
            type='elementwise_add',
            inputs={'X': [input_var],
                    'Y': [b]},
X
xuwei06 已提交
186 187
            outputs={'Out': [tmp]},
            attrs={'axis': dim_start})
Y
Yu Yang 已提交
188 189 190 191 192 193 194 195
        return tmp

    def append_activation(self, input_var):
        act = self.kwargs.get('act', None)
        if act is None:
            return input_var
        if isinstance(act, basestring):
            act = {'type': act}
F
fengjiayi 已提交
196
        tmp = self.create_tmp_variable(dtype=input_var.dtype)
Y
Yu Yang 已提交
197 198 199 200
        act_type = act.pop('type')
        self.append_op(
            type=act_type,
            inputs={"X": [input_var]},
F
fengjiayi 已提交
201
            outputs={"Out": [tmp]},
Y
Yu Yang 已提交
202 203
            attrs=act)
        return tmp
204 205 206

    def _get_default_initializer(self, dtype):
        if dtype is None or dtype_is_floating(dtype) is True:
207
            return Xavier()
208 209
        else:
            # For integer and boolean types, initialize with all zeros
210
            return Constant()
Y
Yang Yu 已提交
211 212 213 214 215 216

    def is_instance(self, param_name, cls):
        param = self.kwargs.get(param_name, None)
        if not isinstance(param, cls):
            raise TypeError("The input {0} parameter of method {1} must be {2}",
                            param_name, self.layer_type, cls.__name__)