"examples/community/fresco_v2v.py" did not exist on "bb1b76d3bf9ef78a827086d1b9449975237ecbac"
regularizer.py 1.47 KB
Newer Older
WenmuZhou's avatar
WenmuZhou committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# copyright (c) 2020 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.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals

WenmuZhou's avatar
WenmuZhou committed
20
import paddle
WenmuZhou's avatar
WenmuZhou committed
21
22
23
24
25
26
27
28
29
30
31


class L1Decay(object):
    """
    L1 Weight Decay Regularization, which encourages the weights to be sparse.
    Args:
        factor(float): regularization coeff. Default:0.0.
    """

    def __init__(self, factor=0.0):
        super(L1Decay, self).__init__()
WenmuZhou's avatar
WenmuZhou committed
32
        self.coeff = factor
WenmuZhou's avatar
WenmuZhou committed
33
34

    def __call__(self):
WenmuZhou's avatar
WenmuZhou committed
35
        reg = paddle.regularizer.L1Decay(self.coeff)
WenmuZhou's avatar
WenmuZhou committed
36
37
38
39
40
        return reg


class L2Decay(object):
    """
WenmuZhou's avatar
WenmuZhou committed
41
    L2 Weight Decay Regularization, which helps to prevent the model over-fitting.
WenmuZhou's avatar
WenmuZhou committed
42
43
44
45
46
47
    Args:
        factor(float): regularization coeff. Default:0.0.
    """

    def __init__(self, factor=0.0):
        super(L2Decay, self).__init__()
WenmuZhou's avatar
WenmuZhou committed
48
        self.coeff = factor
WenmuZhou's avatar
WenmuZhou committed
49
50

    def __call__(self):
WenmuZhou's avatar
WenmuZhou committed
51
        return self.coeff