learning_rate_scheduler.py 7.6 KB
Newer Older
Q
Qiao Longfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 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.

15 16 17 18 19
import control_flow
import nn
import ops
import tensor
from ..initializer import init_on_cpu
Q
Qiao Longfei 已提交
20

21 22 23 24
__all__ = [
    'exponential_decay', 'natural_exp_decay', 'inverse_time_decay',
    'polynomial_decay', 'piecewise_decay'
]
Q
Qiao Longfei 已提交
25 26 27 28 29 30 31 32 33 34
"""
When training a model, it's often useful to decay the
learning rate during training process, this is called
learning_rate_decay. There are many strategies to do
this, this module will provide some classical method.
User can also implement their own learning_rate_decay
strategy according to this module.
"""


Y
Yu Yang 已提交
35
def _decay_step_counter():
Y
Yu Yang 已提交
36
    # the first global step is zero in learning rate decay
37
    global_step = nn.autoincreased_step_counter(
Y
Yu Yang 已提交
38
        counter_name='@LR_DECAY_COUNTER@', begin=0, step=1)
39
    global_step = tensor.cast(global_step, 'float32')
Y
Yu Yang 已提交
40 41 42 43
    return global_step


def exponential_decay(learning_rate, decay_steps, decay_rate, staircase=False):
Q
Qiao Longfei 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    """Applies exponential decay to the learning rate.

    ```python
    decayed_learning_rate = learning_rate *
            decay_rate ^ (global_step / decay_steps)
    ```
    Args:
        learning_rate: A scalar float32 value or a Variable. This
          will be the initial learning rate during training
        decay_steps: A Python `int32` number.
        decay_rate: A Python `float` number.
        staircase: Boolean. If set true, decay the learning rate every decay_steps.

    Returns:
        The decayed learning rate
    """
Y
Yu Yang 已提交
60
    global_step = _decay_step_counter()
Q
Qiao Longfei 已提交
61

62 63 64 65
    with init_on_cpu():
        # update learning_rate
        div_res = global_step / decay_steps
        if staircase:
66
            div_res = ops.floor(div_res)
67 68 69
        decayed_lr = learning_rate * (decay_rate**div_res)

    return decayed_lr
Q
Qiao Longfei 已提交
70 71


Y
Yu Yang 已提交
72
def natural_exp_decay(learning_rate, decay_steps, decay_rate, staircase=False):
Q
Qiao Longfei 已提交
73 74
    """Applies natural exponential decay to the initial learning rate.

Y
Yu Yang 已提交
75 76 77 78 79
    >>> if not staircase:
    >>>     decayed_learning_rate = learning_rate * exp(- decay_rate * (global_step / decay_steps))
    >>> else:
    >>>     decayed_learning_rate = learning_rate * exp(- decay_rate * (global_step / decay_steps))

Q
Qiao Longfei 已提交
80 81 82 83 84 85 86 87 88 89
    Args:
        learning_rate: A scalar float32 value or a Variable. This
          will be the initial learning rate during training
        decay_steps: A Python `int32` number.
        decay_rate: A Python `float` number.
        staircase: Boolean. If set true, decay the learning rate every decay_steps.

    Returns:
        The decayed learning rate
    """
Y
Yu Yang 已提交
90
    global_step = _decay_step_counter()
Q
Qiao Longfei 已提交
91

92 93 94
    with init_on_cpu():
        div_res = global_step / decay_steps
        if staircase:
95 96
            div_res = ops.floor(div_res)
        decayed_lr = learning_rate * ops.exp(-1 * decay_rate * div_res)
97 98

    return decayed_lr
Q
Qiao Longfei 已提交
99 100


Y
Yu Yang 已提交
101
def inverse_time_decay(learning_rate, decay_steps, decay_rate, staircase=False):
Q
Qiao Longfei 已提交
102 103
    """Applies inverse time decay to the initial learning rate.

Y
Yu Yang 已提交
104 105 106 107 108
    >>> if staircase:
    >>>     decayed_learning_rate = learning_rate / (1 + decay_rate * floor(global_step / decay_step))
    >>> else:
    >>>     decayed_learning_rate = learning_rate / (1 + decay_rate * global_step / decay_step)

Q
Qiao Longfei 已提交
109 110
    Args:
        learning_rate: A scalar float32 value or a Variable. This
Y
Yu Yang 已提交
111
          will be the initial learning rate during training.
Q
Qiao Longfei 已提交
112 113 114 115 116 117 118
        decay_steps: A Python `int32` number.
        decay_rate: A Python `float` number.
        staircase: Boolean. If set true, decay the learning rate every decay_steps.

    Returns:
        The decayed learning rate
    """
Y
Yu Yang 已提交
119
    global_step = _decay_step_counter()
Q
Qiao Longfei 已提交
120

121 122 123
    with init_on_cpu():
        div_res = global_step / decay_steps
        if staircase:
124
            div_res = ops.floor(div_res)
125 126

        decayed_lr = learning_rate / (1 + decay_rate * div_res)
Q
Qiao Longfei 已提交
127

128
    return decayed_lr
129 130 131 132 133 134 135 136 137


def polynomial_decay(learning_rate,
                     decay_steps,
                     end_learning_rate=0.0001,
                     power=1.0,
                     cycle=False):
    """Applies polynomial decay to the initial learning rate.

Y
Yu Yang 已提交
138 139 140 141 142 143 144
    >>> if cycle:
    >>>     decay_steps = decay_steps * ceil(global_step / decay_steps)
    >>> else:
    >>>     global_step = min(global_step, decay_steps)
    >>> decayed_learning_rate = (learning_rate - end_learning_rate) *
    >>>                   (1 - global_step / decay_steps) ^ power +
    >>>                   end_learning_rate
145 146 147 148 149 150 151 152 153 154 155
    Args:
        learning_rate: A scalar float32 value or a Variable. This
          will be the initial learning rate during training
        decay_steps: A Python `int32` number.
        end_learning_rate: A Python `float` number.
        power: A Python `float` number
        cycle: Boolean. If set true, decay the learning rate every decay_steps.

    Returns:
        The decayed learning rate
    """
Y
Yu Yang 已提交
156
    global_step = _decay_step_counter()
157

158 159
    with init_on_cpu():
        if cycle:
160 161
            div_res = ops.ceil(global_step / decay_steps)
            zero_var = tensor.fill_constant(
162
                shape=[1], dtype='float32', value=0.0)
163
            one_var = tensor.fill_constant(
164 165
                shape=[1], dtype='float32', value=1.0)

166
            with control_flow.Switch() as switch:
167
                with switch.case(global_step == zero_var):
168
                    tensor.assign(input=one_var, output=div_res)
169 170
            decay_steps = decay_steps * div_res
        else:
171
            decay_steps_var = tensor.fill_constant(
172
                shape=[1], dtype='float32', value=float(decay_steps))
173
            global_step = ops.elementwise_min(x=global_step, y=decay_steps_var)
174 175 176 177

        decayed_lr = (learning_rate - end_learning_rate) * \
                     ((1 - global_step / decay_steps) ** power) + end_learning_rate
    return decayed_lr
178 179


Y
Yu Yang 已提交
180
def piecewise_decay(boundaries, values):
181 182
    """Applies piecewise decay to the initial learning rate.

Y
Yu Yang 已提交
183 184 185 186 187 188 189 190 191
    >>> boundaries = [10000, 20000]
    >>> values = [1.0, 0.5, 0.1]
    >>>
    >>> if step < 10000:
    >>>     learning_rate = 1.0
    >>> elif 10000 <= step < 20000:
    >>>     learning_rate = 0.5
    >>> else:
    >>>     learning_rate = 0.1
192 193 194 195 196
    """

    if len(values) - len(boundaries) != 1:
        raise ValueError("len(values) - len(boundaries) should be 1")

Y
Yu Yang 已提交
197
    global_step = _decay_step_counter()
198

199
    with init_on_cpu():
200
        lr = tensor.create_global_var(
201 202 203 204 205 206
            shape=[1],
            value=0.0,
            dtype='float32',
            persistable=True,
            name="learning_rate")

207
        with control_flow.Switch() as switch:
208
            for i in range(len(boundaries)):
209
                boundary_val = tensor.fill_constant(
210
                    shape=[1], dtype='float32', value=float(boundaries[i]))
211
                value_var = tensor.fill_constant(
212
                    shape=[1], dtype='float32', value=float(values[i]))
213
                with switch.case(global_step < boundary_val):
214 215
                    tensor.assign(value_var, lr)
            last_value_var = tensor.fill_constant(
216 217 218 219
                shape=[1],
                dtype='float32',
                value=float(values[len(values) - 1]))
            with switch.default():
220
                tensor.assign(last_value_var, lr)
221 222

    return lr