test_callback_reduce_lr_on_plateau.py 4.6 KB
Newer Older
L
LielinJiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# 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.

import unittest

import paddle
import paddle.vision.transforms as T
from paddle import Model
from paddle.static import InputSpec
from paddle.vision.models import LeNet
from paddle.vision.datasets import MNIST
from paddle.metric import Accuracy
from paddle.nn.layer.loss import CrossEntropyLoss
25
from paddle.fluid.framework import _test_eager_guard
L
LielinJiang 已提交
26 27 28 29


# Accelerate unittest
class CustomMnist(MNIST):
30

L
LielinJiang 已提交
31 32 33 34 35
    def __len__(self):
        return 8


class TestReduceLROnPlateau(unittest.TestCase):
36

37
    def func_reduce_lr_on_plateau(self):
L
LielinJiang 已提交
38 39 40 41
        transform = T.Compose([T.Transpose(), T.Normalize([127.5], [127.5])])
        train_dataset = CustomMnist(mode='train', transform=transform)
        val_dataset = CustomMnist(mode='test', transform=transform)
        net = LeNet()
42 43
        optim = paddle.optimizer.Adam(learning_rate=0.001,
                                      parameters=net.parameters())
L
LielinJiang 已提交
44 45 46 47
        inputs = [InputSpec([None, 1, 28, 28], 'float32', 'x')]
        labels = [InputSpec([None, 1], 'int64', 'label')]
        model = Model(net, inputs=inputs, labels=labels)
        model.prepare(optim, loss=CrossEntropyLoss(), metrics=[Accuracy()])
48 49 50
        callbacks = paddle.callbacks.ReduceLROnPlateau(patience=1,
                                                       verbose=1,
                                                       cooldown=1)
L
LielinJiang 已提交
51 52 53 54 55 56 57 58
        model.fit(train_dataset,
                  val_dataset,
                  batch_size=8,
                  log_freq=1,
                  save_freq=10,
                  epochs=10,
                  callbacks=[callbacks])

59 60 61 62 63 64
    def test_reduce_lr_on_plateau(self):
        with _test_eager_guard():
            self.func_reduce_lr_on_plateau()
        self.func_reduce_lr_on_plateau()

    def func_warn_or_error(self):
L
LielinJiang 已提交
65 66 67 68 69 70 71 72 73
        with self.assertRaises(ValueError):
            paddle.callbacks.ReduceLROnPlateau(factor=2.0)
        # warning
        paddle.callbacks.ReduceLROnPlateau(mode='1', patience=3, verbose=1)

        transform = T.Compose([T.Transpose(), T.Normalize([127.5], [127.5])])
        train_dataset = CustomMnist(mode='train', transform=transform)
        val_dataset = CustomMnist(mode='test', transform=transform)
        net = LeNet()
74 75
        optim = paddle.optimizer.Adam(learning_rate=0.001,
                                      parameters=net.parameters())
L
LielinJiang 已提交
76 77 78 79
        inputs = [InputSpec([None, 1, 28, 28], 'float32', 'x')]
        labels = [InputSpec([None, 1], 'int64', 'label')]
        model = Model(net, inputs=inputs, labels=labels)
        model.prepare(optim, loss=CrossEntropyLoss(), metrics=[Accuracy()])
80 81 82
        callbacks = paddle.callbacks.ReduceLROnPlateau(monitor='miou',
                                                       patience=3,
                                                       verbose=1)
L
LielinJiang 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96
        model.fit(train_dataset,
                  val_dataset,
                  batch_size=8,
                  log_freq=1,
                  save_freq=10,
                  epochs=1,
                  callbacks=[callbacks])

        optim = paddle.optimizer.Adam(
            learning_rate=paddle.optimizer.lr.PiecewiseDecay([0.001, 0.0001],
                                                             [5, 10]),
            parameters=net.parameters())

        model.prepare(optim, loss=CrossEntropyLoss(), metrics=[Accuracy()])
97 98 99 100 101
        callbacks = paddle.callbacks.ReduceLROnPlateau(monitor='acc',
                                                       mode='max',
                                                       patience=3,
                                                       verbose=1,
                                                       cooldown=1)
L
LielinJiang 已提交
102 103 104 105 106 107 108 109
        model.fit(train_dataset,
                  val_dataset,
                  batch_size=8,
                  log_freq=1,
                  save_freq=10,
                  epochs=3,
                  callbacks=[callbacks])

110 111 112 113 114
    def test_warn_or_error(self):
        with _test_eager_guard():
            self.func_warn_or_error()
        self.func_warn_or_error()

L
LielinJiang 已提交
115 116 117

if __name__ == '__main__':
    unittest.main()