test_imperative_container_sequential.py 3.9 KB
Newer Older
Y
Youwei Song 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2019 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
16

Y
Youwei Song 已提交
17
import numpy as np
18
from paddle.nn import Linear
19 20

import paddle.fluid as fluid
21
from paddle.fluid.framework import _test_eager_guard
Y
Youwei Song 已提交
22 23 24


class TestImperativeContainerSequential(unittest.TestCase):
25
    def func_sequential(self):
Y
Youwei Song 已提交
26 27 28
        data = np.random.uniform(-1, 1, [5, 10]).astype('float32')
        with fluid.dygraph.guard():
            data = fluid.dygraph.to_variable(data)
29
            model1 = fluid.dygraph.Sequential(Linear(10, 1), Linear(1, 2))
Y
Youwei Song 已提交
30 31
            res1 = model1(data)
            self.assertListEqual(res1.shape, [5, 2])
32
            model1[1] = Linear(1, 3)
Y
Youwei Song 已提交
33 34 35 36 37
            res1 = model1(data)
            self.assertListEqual(res1.shape, [5, 3])
            loss1 = fluid.layers.reduce_mean(res1)
            loss1.backward()

38 39
            l1 = Linear(10, 1)
            l2 = Linear(1, 3)
S
songyouwei 已提交
40
            model2 = fluid.dygraph.Sequential(('l1', l1), ('l2', l2))
Y
Youwei Song 已提交
41 42
            self.assertEqual(len(model2), 2)
            res2 = model2(data)
S
songyouwei 已提交
43
            self.assertTrue(l1 is model2.l1)
Y
Youwei Song 已提交
44 45 46 47 48 49
            self.assertListEqual(res2.shape, res1.shape)
            self.assertEqual(len(model1.parameters()), len(model2.parameters()))
            del model2['l2']
            self.assertEqual(len(model2), 1)
            res2 = model2(data)
            self.assertListEqual(res2.shape, [5, 1])
50 51
            model2.add_sublayer('l3', Linear(1, 3))
            model2.add_sublayer('l4', Linear(3, 4))
Y
Youwei Song 已提交
52 53 54 55 56 57 58
            self.assertEqual(len(model2), 3)
            res2 = model2(data)
            self.assertListEqual(res2.shape, [5, 4])

            loss2 = fluid.layers.reduce_mean(res2)
            loss2.backward()

59 60 61 62 63 64
    def test_sequential(self):
        with _test_eager_guard():
            self.func_sequential()
        self.func_sequential()

    def func_sequential_list_params(self):
65 66 67
        data = np.random.uniform(-1, 1, [5, 10]).astype('float32')
        with fluid.dygraph.guard():
            data = fluid.dygraph.to_variable(data)
68
            model1 = fluid.dygraph.Sequential(Linear(10, 1), Linear(1, 2))
69 70
            res1 = model1(data)
            self.assertListEqual(res1.shape, [5, 2])
71
            model1[1] = Linear(1, 3)
72 73 74 75 76
            res1 = model1(data)
            self.assertListEqual(res1.shape, [5, 3])
            loss1 = fluid.layers.reduce_mean(res1)
            loss1.backward()

77 78
            l1 = Linear(10, 1)
            l2 = Linear(1, 3)
79 80 81 82 83 84 85 86 87 88
            model2 = fluid.dygraph.Sequential(['l1', l1], ['l2', l2])
            self.assertEqual(len(model2), 2)
            res2 = model2(data)
            self.assertTrue(l1 is model2.l1)
            self.assertListEqual(res2.shape, res1.shape)
            self.assertEqual(len(model1.parameters()), len(model2.parameters()))
            del model2['l2']
            self.assertEqual(len(model2), 1)
            res2 = model2(data)
            self.assertListEqual(res2.shape, [5, 1])
89 90
            model2.add_sublayer('l3', Linear(1, 3))
            model2.add_sublayer('l4', Linear(3, 4))
91 92 93 94 95 96 97
            self.assertEqual(len(model2), 3)
            res2 = model2(data)
            self.assertListEqual(res2.shape, [5, 4])

            loss2 = fluid.layers.reduce_mean(res2)
            loss2.backward()

98 99 100 101 102
    def test_sequential_list_params(self):
        with _test_eager_guard():
            self.func_sequential_list_params()
        self.func_sequential_list_params()

Y
Youwei Song 已提交
103 104 105

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