test_imperative_resnet.py 14.8 KB
Newer Older
M
minqiyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# Copyright (c) 2018 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 contextlib
import unittest
import numpy as np
import six

import paddle
import paddle.fluid as fluid
from paddle.fluid import core
M
minqiyang 已提交
23
from paddle.fluid.layer_helper import LayerHelper
24
from paddle.fluid import Conv2D, Pool2D, BatchNorm, Linear
L
lujun 已提交
25
from paddle.fluid.dygraph.base import to_variable
M
minqiyang 已提交
26
from test_imperative_base import new_program_scope
27
from utils import DyGraphProgramDescTracerTestHelper, is_equal_program
28
from paddle.fluid.dygraph import TracedLayer
M
minqiyang 已提交
29

30
batch_size = 8
M
minqiyang 已提交
31 32 33 34 35 36
train_parameters = {
    "input_size": [3, 224, 224],
    "input_mean": [0.485, 0.456, 0.406],
    "input_std": [0.229, 0.224, 0.225],
    "learning_strategy": {
        "name": "piecewise_decay",
M
minqiyang 已提交
37
        "batch_size": batch_size,
M
minqiyang 已提交
38 39
        "epochs": [30, 60, 90],
        "steps": [0.1, 0.01, 0.001, 0.0001]
M
minqiyang 已提交
40
    },
M
minqiyang 已提交
41
    "batch_size": batch_size,
M
minqiyang 已提交
42 43
    "lr": 0.1,
    "total_images": 1281164,
M
minqiyang 已提交
44 45 46
}


47
def optimizer_setting(params, parameter_list=None):
M
minqiyang 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60
    ls = params["learning_strategy"]
    if ls["name"] == "piecewise_decay":
        if "total_images" not in params:
            total_images = 1281167
        else:
            total_images = params["total_images"]
        batch_size = ls["batch_size"]
        step = int(total_images / batch_size + 1)

        bd = [step * e for e in ls["epochs"]]
        base_lr = params["lr"]
        lr = []
        lr = [base_lr * (0.1**i) for i in range(len(bd) + 1)]
61 62 63 64 65
        if fluid.in_dygraph_mode():
            optimizer = fluid.optimizer.SGD(learning_rate=0.01,
                                            parameter_list=parameter_list)
        else:
            optimizer = fluid.optimizer.SGD(learning_rate=0.01)
L
lujun 已提交
66
        # TODO(minqiyang): Add learning rate scheduler support to dygraph mode
M
minqiyang 已提交
67
        #  optimizer = fluid.optimizer.Momentum(
68 69 70 71 72
        #  learning_rate=params["lr"],
        #  learning_rate=fluid.layers.piecewise_decay(
        #  boundaries=bd, values=lr),
        #  momentum=0.9,
        #  regularization=fluid.regularizer.L2Decay(1e-4))
M
minqiyang 已提交
73 74 75 76

    return optimizer


77
class ConvBNLayer(fluid.Layer):
M
minqiyang 已提交
78
    def __init__(self,
79
                 num_channels,
M
minqiyang 已提交
80 81 82 83 84
                 num_filters,
                 filter_size,
                 stride=1,
                 groups=1,
                 act=None):
85
        super(ConvBNLayer, self).__init__()
M
minqiyang 已提交
86 87

        self._conv = Conv2D(
88
            num_channels=num_channels,
M
minqiyang 已提交
89 90 91 92
            num_filters=num_filters,
            filter_size=filter_size,
            stride=stride,
            padding=(filter_size - 1) // 2,
M
minqiyang 已提交
93 94
            groups=groups,
            act=None,
H
hong 已提交
95 96
            bias_attr=None,
            use_cudnn=False)
M
minqiyang 已提交
97

98
        self._batch_norm = BatchNorm(num_filters, act=act)
M
minqiyang 已提交
99 100 101

    def forward(self, inputs):
        y = self._conv(inputs)
102
        y = self._batch_norm(y)
M
minqiyang 已提交
103 104 105 106

        return y


107
class BottleneckBlock(fluid.Layer):
108 109
    def __init__(self, num_channels, num_filters, stride, shortcut=True):
        super(BottleneckBlock, self).__init__()
M
minqiyang 已提交
110 111

        self.conv0 = ConvBNLayer(
112
            num_channels=num_channels,
M
minqiyang 已提交
113 114 115
            num_filters=num_filters,
            filter_size=1,
            act='relu')
M
minqiyang 已提交
116
        self.conv1 = ConvBNLayer(
117
            num_channels=num_filters,
M
minqiyang 已提交
118 119 120 121
            num_filters=num_filters,
            filter_size=3,
            stride=stride,
            act='relu')
M
minqiyang 已提交
122
        self.conv2 = ConvBNLayer(
123
            num_channels=num_filters,
M
minqiyang 已提交
124 125 126
            num_filters=num_filters * 4,
            filter_size=1,
            act=None)
M
minqiyang 已提交
127

M
minqiyang 已提交
128
        if not shortcut:
M
minqiyang 已提交
129
            self.short = ConvBNLayer(
130
                num_channels=num_channels,
M
minqiyang 已提交
131 132 133
                num_filters=num_filters * 4,
                filter_size=1,
                stride=stride)
M
minqiyang 已提交
134 135 136 137

        self.shortcut = shortcut

    def forward(self, inputs):
M
minqiyang 已提交
138 139 140
        y = self.conv0(inputs)
        conv1 = self.conv1(y)
        conv2 = self.conv2(conv1)
M
minqiyang 已提交
141 142

        if self.shortcut:
M
minqiyang 已提交
143 144 145
            short = inputs
        else:
            short = self.short(inputs)
M
minqiyang 已提交
146

M
minqiyang 已提交
147 148
        y = fluid.layers.elementwise_add(x=short, y=conv2)

X
Xin Pan 已提交
149
        layer_helper = LayerHelper(self.full_name(), act='relu')
M
minqiyang 已提交
150
        return layer_helper.append_activation(y)
M
minqiyang 已提交
151 152


153
class ResNet(fluid.Layer):
154 155
    def __init__(self, layers=50, class_dim=102):
        super(ResNet, self).__init__()
M
minqiyang 已提交
156

M
minqiyang 已提交
157 158 159 160 161 162 163 164 165 166 167
        self.layers = layers
        supported_layers = [50, 101, 152]
        assert layers in supported_layers, \
            "supported layers are {} but input layer is {}".format(supported_layers, layers)

        if layers == 50:
            depth = [3, 4, 6, 3]
        elif layers == 101:
            depth = [3, 4, 23, 3]
        elif layers == 152:
            depth = [3, 8, 36, 3]
168
        num_channels = [64, 256, 512, 1024]
M
minqiyang 已提交
169 170 171
        num_filters = [64, 128, 256, 512]

        self.conv = ConvBNLayer(
172
            num_channels=3, num_filters=64, filter_size=7, stride=2, act='relu')
M
minqiyang 已提交
173
        self.pool2d_max = Pool2D(
174
            pool_size=3, pool_stride=2, pool_padding=1, pool_type='max')
M
minqiyang 已提交
175

M
minqiyang 已提交
176 177 178 179
        self.bottleneck_block_list = []
        for block in range(len(depth)):
            shortcut = False
            for i in range(depth[block]):
X
Xin Pan 已提交
180 181 182
                bottleneck_block = self.add_sublayer(
                    'bb_%d_%d' % (block, i),
                    BottleneckBlock(
183 184
                        num_channels=num_channels[block]
                        if i == 0 else num_filters[block] * 4,
X
Xin Pan 已提交
185 186 187
                        num_filters=num_filters[block],
                        stride=2 if i == 0 and block != 0 else 1,
                        shortcut=shortcut))
M
minqiyang 已提交
188 189 190 191
                self.bottleneck_block_list.append(bottleneck_block)
                shortcut = True

        self.pool2d_avg = Pool2D(
192
            pool_size=7, pool_type='avg', global_pooling=True)
M
minqiyang 已提交
193

194 195
        self.pool2d_avg_output = num_filters[-1] * 4 * 1 * 1

M
minqiyang 已提交
196 197 198
        import math
        stdv = 1.0 / math.sqrt(2048 * 1.0)

199 200 201 202 203 204
        self.out = Linear(
            self.pool2d_avg_output,
            class_dim,
            act='softmax',
            param_attr=fluid.param_attr.ParamAttr(
                initializer=fluid.initializer.Uniform(-stdv, stdv)))
M
minqiyang 已提交
205 206 207 208

    def forward(self, inputs):
        y = self.conv(inputs)
        y = self.pool2d_max(y)
M
minqiyang 已提交
209 210 211
        for bottleneck_block in self.bottleneck_block_list:
            y = bottleneck_block(y)
        y = self.pool2d_avg(y)
212
        y = fluid.layers.reshape(y, shape=[-1, self.pool2d_avg_output])
M
minqiyang 已提交
213
        y = self.out(y)
M
minqiyang 已提交
214 215 216
        return y


L
lujun 已提交
217
class TestDygraphResnet(unittest.TestCase):
218 219 220 221 222 223 224 225 226
    def reader_decorator(self, reader):
        def _reader_imple():
            for item in reader():
                doc = np.array(item[0]).reshape(3, 224, 224)
                label = np.array(item[1]).astype('int64').reshape(1)
                yield doc, label

        return _reader_imple

M
minqiyang 已提交
227
    def test_resnet_float32(self):
M
minqiyang 已提交
228 229
        seed = 90

230
        batch_size = train_parameters["batch_size"]
231 232
        batch_num = 10

233 234
        traced_layer = None

L
lujun 已提交
235
        with fluid.dygraph.guard():
236 237 238
            fluid.default_startup_program().random_seed = seed
            fluid.default_main_program().random_seed = seed

239 240 241
            resnet = ResNet()
            optimizer = optimizer_setting(
                train_parameters, parameter_list=resnet.parameters())
242 243 244
            np.random.seed(seed)
            import random
            random.seed = seed
245 246 247 248 249 250 251 252 253

            batch_py_reader = fluid.io.PyReader(capacity=1)
            batch_py_reader.decorate_sample_list_generator(
                paddle.batch(
                    self.reader_decorator(
                        paddle.dataset.flowers.train(use_xmap=False)),
                    batch_size=batch_size,
                    drop_last=True),
                places=fluid.CPUPlace())
254 255

            dy_param_init_value = {}
M
minqiyang 已提交
256
            for param in resnet.parameters():
257
                dy_param_init_value[param.name] = param.numpy()
258

259 260
            helper = DyGraphProgramDescTracerTestHelper(self)
            program = None
261

262
            for batch_id, data in enumerate(batch_py_reader()):
M
minqiyang 已提交
263
                if batch_id >= batch_num:
264 265
                    break

266 267
                img = data[0]
                label = data[1]
268
                label.stop_gradient = True
269

270
                out = None
271
                if batch_id % 5 == 0:
272 273 274 275 276 277 278 279 280
                    out, traced_layer = TracedLayer.trace(resnet, img)
                    if program is not None:
                        self.assertTrue(
                            is_equal_program(program, traced_layer.program))

                    traced_layer.save_inference_model(
                        './infer_imperative_resnet')

                    program = traced_layer.program
281 282 283
                else:
                    out = resnet(img)

284 285 286
                if traced_layer is not None:
                    resnet.eval()
                    traced_layer._switch(is_test=True)
287
                    out_dygraph = resnet(img)
288 289 290 291 292
                    out_static = traced_layer([img])
                    traced_layer._switch(is_test=False)
                    helper.assertEachVar(out_dygraph, out_static)
                    resnet.train()

293 294 295
                loss = fluid.layers.cross_entropy(input=out, label=label)
                avg_loss = fluid.layers.mean(x=loss)

296
                dy_out = avg_loss.numpy()
297 298

                if batch_id == 0:
M
minqiyang 已提交
299
                    for param in resnet.parameters():
300
                        if param.name not in dy_param_init_value:
301
                            dy_param_init_value[param.name] = param.numpy()
302

L
lujun 已提交
303
                avg_loss.backward()
304 305

                dy_grad_value = {}
M
minqiyang 已提交
306
                for param in resnet.parameters():
307
                    if param.trainable:
308
                        np_array = np.array(param._grad_ivar().value()
309 310 311 312 313
                                            .get_tensor())
                        dy_grad_value[param.name + core.grad_var_suffix(
                        )] = np_array

                optimizer.minimize(avg_loss)
M
minqiyang 已提交
314
                resnet.clear_gradients()
315 316

                dy_param_value = {}
M
minqiyang 已提交
317
                for param in resnet.parameters():
318
                    dy_param_value[param.name] = param.numpy()
M
minqiyang 已提交
319 320

        with new_program_scope():
M
minqiyang 已提交
321 322 323
            fluid.default_startup_program().random_seed = seed
            fluid.default_main_program().random_seed = seed

M
minqiyang 已提交
324 325
            exe = fluid.Executor(fluid.CPUPlace(
            ) if not core.is_compiled_with_cuda() else fluid.CUDAPlace(0))
326

327
            resnet = ResNet()
328
            optimizer = optimizer_setting(train_parameters)
M
minqiyang 已提交
329 330 331 332

            np.random.seed(seed)
            import random
            random.seed = seed
333
            train_reader = paddle.batch(
M
minqiyang 已提交
334 335
                paddle.dataset.flowers.train(use_xmap=False),
                batch_size=batch_size)
336 337 338 339 340 341 342 343 344 345 346 347

            img = fluid.layers.data(
                name='pixel', shape=[3, 224, 224], dtype='float32')
            label = fluid.layers.data(name='label', shape=[1], dtype='int64')
            out = resnet(img)
            loss = fluid.layers.cross_entropy(input=out, label=label)
            avg_loss = fluid.layers.mean(x=loss)
            optimizer.minimize(avg_loss)

            # initialize params and fetch them
            static_param_init_value = {}
            static_param_name_list = []
M
minqiyang 已提交
348
            static_grad_name_list = []
M
minqiyang 已提交
349
            for param in resnet.parameters():
350
                static_param_name_list.append(param.name)
M
minqiyang 已提交
351
            for param in resnet.parameters():
352
                if param.trainable:
M
minqiyang 已提交
353 354
                    static_grad_name_list.append(param.name +
                                                 core.grad_var_suffix())
355 356 357 358 359 360 361 362

            out = exe.run(fluid.default_startup_program(),
                          fetch_list=static_param_name_list)

            for i in range(len(static_param_name_list)):
                static_param_init_value[static_param_name_list[i]] = out[i]

            for batch_id, data in enumerate(train_reader()):
M
minqiyang 已提交
363
                if batch_id >= batch_num:
364 365
                    break

M
minqiyang 已提交
366
                static_x_data = np.array(
367 368 369 370
                    [x[0].reshape(3, 224, 224) for x in data]).astype('float32')
                y_data = np.array([x[1] for x in data]).astype('int64').reshape(
                    [batch_size, 1])

371 372 373
                if traced_layer is not None:
                    traced_layer([static_x_data])

M
minqiyang 已提交
374
                fetch_list = [avg_loss.name]
375
                fetch_list.extend(static_param_name_list)
M
minqiyang 已提交
376
                fetch_list.extend(static_grad_name_list)
377
                out = exe.run(fluid.default_main_program(),
M
minqiyang 已提交
378
                              feed={"pixel": static_x_data,
379 380 381 382
                                    "label": y_data},
                              fetch_list=fetch_list)

                static_param_value = {}
M
minqiyang 已提交
383
                static_grad_value = {}
384
                static_out = out[0]
M
minqiyang 已提交
385 386 387 388 389 390 391 392 393 394 395
                param_start_pos = 1
                grad_start_pos = len(static_param_name_list) + param_start_pos
                for i in range(param_start_pos,
                               len(static_param_name_list) + param_start_pos):
                    static_param_value[static_param_name_list[
                        i - param_start_pos]] = out[i]
                for i in range(grad_start_pos,
                               len(static_grad_name_list) + grad_start_pos):
                    static_grad_value[static_grad_name_list[
                        i - grad_start_pos]] = out[i]

H
hong 已提交
396 397
        print("static", static_out)
        print("dygraph", dy_out)
M
minqiyang 已提交
398 399 400
        self.assertTrue(np.allclose(static_out, dy_out))

        self.assertEqual(len(dy_param_init_value), len(static_param_init_value))
X
Xin Pan 已提交
401

M
minqiyang 已提交
402 403
        for key, value in six.iteritems(static_param_init_value):
            self.assertTrue(np.allclose(value, dy_param_init_value[key]))
404 405
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
406

M
minqiyang 已提交
407
        self.assertEqual(len(dy_grad_value), len(static_grad_value))
M
minqiyang 已提交
408
        for key, value in six.iteritems(static_grad_value):
M
minqiyang 已提交
409
            self.assertTrue(np.allclose(value, dy_grad_value[key]))
410 411
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
412

M
minqiyang 已提交
413
        self.assertEqual(len(dy_param_value), len(static_param_value))
M
minqiyang 已提交
414
        for key, value in six.iteritems(static_param_value):
415 416 417
            self.assertTrue(np.allclose(value, dy_param_value[key]))
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
M
minqiyang 已提交
418 419 420 421


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