__init__.py 2.4 KB
Newer Older
W
WenmuZhou 已提交
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
import copy
Z
zhoujun 已提交
20
import paddle
W
WenmuZhou 已提交
21 22 23 24 25 26 27

__all__ = ['build_optimizer']


def build_lr_scheduler(lr_config, epochs, step_each_epoch):
    from . import learning_rate
    lr_config.update({'epochs': epochs, 'step_each_epoch': step_each_epoch})
文幕地方's avatar
文幕地方 已提交
28 29
    lr_name = lr_config.pop('name', 'Const')
    lr = getattr(learning_rate, lr_name)(**lr_config)()
W
WenmuZhou 已提交
30 31 32
    return lr


T
Topdu 已提交
33
def build_optimizer(config, epochs, step_each_epoch, model):
W
WenmuZhou 已提交
34 35 36
    from . import regularizer, optimizer
    config = copy.deepcopy(config)
    # step1 build lr
W
WenmuZhou 已提交
37
    lr = build_lr_scheduler(config.pop('lr'), epochs, step_each_epoch)
W
WenmuZhou 已提交
38 39 40 41

    # step2 build regularization
    if 'regularizer' in config and config['regularizer'] is not None:
        reg_config = config.pop('regularizer')
42 43 44
        reg_name = reg_config.pop('name')
        if not hasattr(regularizer, reg_name):
            reg_name += 'Decay'
W
WenmuZhou 已提交
45
        reg = getattr(regularizer, reg_name)(**reg_config)()
T
Topdu 已提交
46 47
    elif 'weight_decay' in config:
        reg = config.pop('weight_decay')
W
WenmuZhou 已提交
48 49 50 51 52
    else:
        reg = None

    # step3 build optimizer
    optim_name = config.pop('name')
Z
zhoujun 已提交
53 54 55
    if 'clip_norm' in config:
        clip_norm = config.pop('clip_norm')
        grad_clip = paddle.nn.ClipGradByNorm(clip_norm=clip_norm)
56 57 58
    elif 'clip_norm_global' in config:
        clip_norm = config.pop('clip_norm_global')
        grad_clip = paddle.nn.ClipGradByGlobalNorm(clip_norm=clip_norm)
Z
zhoujun 已提交
59 60
    else:
        grad_clip = None
W
WenmuZhou 已提交
61
    optim = getattr(optimizer, optim_name)(learning_rate=lr,
D
dyning 已提交
62
                                           weight_decay=reg,
Z
zhoujun 已提交
63
                                           grad_clip=grad_clip,
W
WenmuZhou 已提交
64
                                           **config)
T
Topdu 已提交
65
    return optim(model), lr