test_imperative_named_members.py 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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
import numpy as np
import paddle.fluid as fluid
18
import paddle
J
Jiabin Yang 已提交
19
from paddle.fluid.framework import _test_eager_guard, _non_static_mode
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34


class MyLayer(fluid.Layer):
    def __init__(self, num_channel, dim, num_filter=5):
        super(MyLayer, self).__init__()
        self.fc = fluid.dygraph.Linear(dim, dim)
        self.conv = fluid.dygraph.Conv2D(num_channel, num_channel, num_filter)

    def forward(self, x):
        x = self.fc(x)
        x = self.conv(x)
        return x


class TestImperativeNamedSubLayers(unittest.TestCase):
35
    def func_test_named_sublayers(self):
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
        with fluid.dygraph.guard():
            fc1 = fluid.Linear(10, 3)
            fc2 = fluid.Linear(3, 10, bias_attr=False)
            custom = MyLayer(3, 10)
            model = fluid.dygraph.Sequential(fc1, fc2, custom)
            named_sublayers = model.named_sublayers()
            list_named_sublayers = list(named_sublayers)

            expected_sublayers = [fc1, fc2, custom, custom.fc, custom.conv]
            self.assertEqual(len(list_named_sublayers), len(expected_sublayers))
            for (name, sublayer), expected_sublayer in zip(list_named_sublayers,
                                                           expected_sublayers):
                self.assertEqual(sublayer, expected_sublayer)

            list_sublayers = list(model.sublayers())
            self.assertEqual(len(list_named_sublayers), len(list_sublayers))
            for (name, sublayer), expected_sublayer in zip(list_named_sublayers,
                                                           list_sublayers):
                self.assertEqual(sublayer, expected_sublayer)

            self.assertListEqual(
                [l for _, l in list(model.named_sublayers(include_self=True))],
                [model] + expected_sublayers)

60 61 62 63 64
    def test_named_sublayers(self):
        with _test_eager_guard():
            self.func_test_named_sublayers()
        self.func_test_named_sublayers()

65 66

class TestImperativeNamedParameters(unittest.TestCase):
67
    def func_test_named_parameters(self):
68 69 70 71
        with fluid.dygraph.guard():
            fc1 = fluid.Linear(10, 3)
            fc2 = fluid.Linear(3, 10, bias_attr=False)
            custom = MyLayer(3, 10)
H
hong 已提交
72
            model = paddle.nn.Sequential(fc1, fc2, custom)
73 74 75

            named_parameters = list(model.named_parameters())
            expected_named_parameters = list()
J
Jiabin Yang 已提交
76
            for prefix, layer in model.named_sublayers():
77 78 79 80 81 82 83
                for name, param in layer.named_parameters(
                        include_sublayers=False):
                    full_name = prefix + ('.' if prefix else '') + name
                    expected_named_parameters.append((full_name, param))

            self.assertListEqual(expected_named_parameters, named_parameters)

84 85 86 87 88 89
    def test_named_parameters(self):
        with _test_eager_guard():
            self.func_test_named_parameters()
        self.func_test_named_parameters()

    def func_test_dir_layer(self):
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        with fluid.dygraph.guard():

            class Mymodel(fluid.dygraph.Layer):
                def __init__(self):
                    super(Mymodel, self).__init__()
                    self.linear1 = fluid.dygraph.Linear(10, 10)
                    self.linear2 = fluid.dygraph.Linear(5, 5)
                    self.conv2d = fluid.dygraph.Conv2D(3, 2, 3)
                    self.embedding = fluid.dygraph.Embedding(size=[128, 16])
                    self.h_0 = fluid.dygraph.to_variable(
                        np.zeros([10, 10]).astype('float32'))
                    self.weight = self.create_parameter(
                        shape=[2, 3],
                        attr=fluid.ParamAttr(),
                        dtype="float32",
                        is_bias=False)

            model = Mymodel()

            expected_members = dir(model)

            self.assertTrue("linear1" in expected_members,
                            "model should contain Layer: linear1")
            self.assertTrue("linear2" in expected_members,
                            "model should contain Layer: linear2")
            self.assertTrue("conv2d" in expected_members,
                            "model should contain Layer: conv2d")
            self.assertTrue("embedding" in expected_members,
                            "model should contain Layer: embedding")
            self.assertTrue("h_0" in expected_members,
                            "model should contain buffer: h_0")
            self.assertTrue("weight" in expected_members,
                            "model should contain parameter: weight")

124 125 126 127 128
    def test_dir_layer(self):
        with _test_eager_guard():
            self.func_test_dir_layer()
        self.func_test_dir_layer()

129 130 131

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