test_imperative_resnet.py 15.2 KB
Newer Older
M
minqiyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 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 unittest
16

M
minqiyang 已提交
17
import numpy as np
18
from test_imperative_base import new_program_scope
19
from utils import DyGraphProgramDescTracerTestHelper
M
minqiyang 已提交
20 21 22

import paddle
import paddle.fluid as fluid
23
from paddle.fluid import core
L
lujun 已提交
24
from paddle.fluid.dygraph.base import to_variable
25
from paddle.fluid.framework import _test_eager_guard
26
from paddle.fluid.layer_helper import LayerHelper
27
from paddle.nn import BatchNorm
M
minqiyang 已提交
28

29
# NOTE(zhiqiu): run with FLAGS_cudnn_deterministic=1
30

31
batch_size = 8
M
minqiyang 已提交
32 33 34 35 36 37
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 已提交
38
        "batch_size": batch_size,
M
minqiyang 已提交
39
        "epochs": [30, 60, 90],
40
        "steps": [0.1, 0.01, 0.001, 0.0001],
M
minqiyang 已提交
41
    },
M
minqiyang 已提交
42
    "batch_size": batch_size,
M
minqiyang 已提交
43 44
    "lr": 0.1,
    "total_images": 1281164,
M
minqiyang 已提交
45 46 47
}


48
def optimizer_setting(params, parameter_list=None):
M
minqiyang 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61
    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)]
J
Jiabin Yang 已提交
62
        if fluid._non_static_mode():
63 64 65
            optimizer = fluid.optimizer.SGD(
                learning_rate=0.01, parameter_list=parameter_list
            )
66 67
        else:
            optimizer = fluid.optimizer.SGD(learning_rate=0.01)
L
lujun 已提交
68
        # TODO(minqiyang): Add learning rate scheduler support to dygraph mode
M
minqiyang 已提交
69
        #  optimizer = fluid.optimizer.Momentum(
70 71 72 73 74
        #  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 已提交
75 76 77 78

    return optimizer


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

92 93 94 95
        self._conv = paddle.nn.Conv2D(
            in_channels=num_channels,
            out_channels=num_filters,
            kernel_size=filter_size,
96 97 98 99 100
            stride=stride,
            padding=(filter_size - 1) // 2,
            groups=groups,
            bias_attr=False,
        )
M
minqiyang 已提交
101

102
        self._batch_norm = BatchNorm(num_filters, act=act)
M
minqiyang 已提交
103 104 105

    def forward(self, inputs):
        y = self._conv(inputs)
106
        y = self._batch_norm(y)
M
minqiyang 已提交
107 108 109 110

        return y


111
class BottleneckBlock(fluid.Layer):
112 113 114
    def __init__(
        self, num_channels, num_filters, stride, shortcut=True, use_cudnn=False
    ):
115
        super().__init__()
M
minqiyang 已提交
116

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
        self.conv0 = ConvBNLayer(
            num_channels=num_channels,
            num_filters=num_filters,
            filter_size=1,
            act='relu',
            use_cudnn=use_cudnn,
        )
        self.conv1 = ConvBNLayer(
            num_channels=num_filters,
            num_filters=num_filters,
            filter_size=3,
            stride=stride,
            act='relu',
            use_cudnn=use_cudnn,
        )
        self.conv2 = ConvBNLayer(
            num_channels=num_filters,
            num_filters=num_filters * 4,
            filter_size=1,
            act=None,
            use_cudnn=use_cudnn,
        )
M
minqiyang 已提交
139

M
minqiyang 已提交
140
        if not shortcut:
141 142 143 144 145 146 147
            self.short = ConvBNLayer(
                num_channels=num_channels,
                num_filters=num_filters * 4,
                filter_size=1,
                stride=stride,
                use_cudnn=use_cudnn,
            )
M
minqiyang 已提交
148 149 150 151

        self.shortcut = shortcut

    def forward(self, inputs):
M
minqiyang 已提交
152 153 154
        y = self.conv0(inputs)
        conv1 = self.conv1(y)
        conv2 = self.conv2(conv1)
M
minqiyang 已提交
155 156

        if self.shortcut:
M
minqiyang 已提交
157 158 159
            short = inputs
        else:
            short = self.short(inputs)
M
minqiyang 已提交
160

161
        y = paddle.add(x=short, y=conv2)
M
minqiyang 已提交
162

X
Xin Pan 已提交
163
        layer_helper = LayerHelper(self.full_name(), act='relu')
M
minqiyang 已提交
164
        return layer_helper.append_activation(y)
M
minqiyang 已提交
165 166


167
class ResNet(fluid.Layer):
H
hong 已提交
168
    def __init__(self, layers=50, class_dim=102, use_cudnn=True):
169
        super().__init__()
M
minqiyang 已提交
170

M
minqiyang 已提交
171 172
        self.layers = layers
        supported_layers = [50, 101, 152]
173 174 175 176 177
        assert (
            layers in supported_layers
        ), "supported layers are {} but input layer is {}".format(
            supported_layers, layers
        )
M
minqiyang 已提交
178 179 180 181 182 183 184

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

188 189 190 191 192 193 194 195
        self.conv = ConvBNLayer(
            num_channels=3,
            num_filters=64,
            filter_size=7,
            stride=2,
            act='relu',
            use_cudnn=use_cudnn,
        )
196 197
        self.pool2d_max = paddle.nn.MaxPool2D(
            kernel_size=3, stride=2, padding=1
198
        )
M
minqiyang 已提交
199

M
minqiyang 已提交
200 201 202 203
        self.bottleneck_block_list = []
        for block in range(len(depth)):
            shortcut = False
            for i in range(depth[block]):
X
Xin Pan 已提交
204 205
                bottleneck_block = self.add_sublayer(
                    'bb_%d_%d' % (block, i),
206 207 208 209 210 211 212 213 214 215
                    BottleneckBlock(
                        num_channels=num_channels[block]
                        if i == 0
                        else num_filters[block] * 4,
                        num_filters=num_filters[block],
                        stride=2 if i == 0 and block != 0 else 1,
                        shortcut=shortcut,
                        use_cudnn=use_cudnn,
                    ),
                )
M
minqiyang 已提交
216 217
                self.bottleneck_block_list.append(bottleneck_block)
                shortcut = True
W
wangzhen38 已提交
218
        self.pool2d_avg = paddle.nn.AdaptiveAvgPool2D(1)
M
minqiyang 已提交
219

220 221
        self.pool2d_avg_output = num_filters[-1] * 4 * 1 * 1

M
minqiyang 已提交
222
        import math
223

M
minqiyang 已提交
224 225
        stdv = 1.0 / math.sqrt(2048 * 1.0)

226
        self.out = paddle.nn.Linear(
227 228
            self.pool2d_avg_output,
            class_dim,
229
            weight_attr=fluid.param_attr.ParamAttr(
230 231 232
                initializer=fluid.initializer.Uniform(-stdv, stdv)
            ),
        )
M
minqiyang 已提交
233 234 235 236

    def forward(self, inputs):
        y = self.conv(inputs)
        y = self.pool2d_max(y)
M
minqiyang 已提交
237 238 239
        for bottleneck_block in self.bottleneck_block_list:
            y = bottleneck_block(y)
        y = self.pool2d_avg(y)
240
        y = paddle.reshape(y, shape=[-1, self.pool2d_avg_output])
M
minqiyang 已提交
241
        y = self.out(y)
242
        y = paddle.nn.functional.softmax(y)
M
minqiyang 已提交
243 244 245
        return y


L
lujun 已提交
246
class TestDygraphResnet(unittest.TestCase):
247 248 249 250 251 252 253 254 255
    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

256
    def func_test_resnet_float32(self):
M
minqiyang 已提交
257 258
        seed = 90

259
        batch_size = train_parameters["batch_size"]
260 261
        batch_num = 10

262 263
        traced_layer = None

L
lujun 已提交
264
        with fluid.dygraph.guard():
C
cnn 已提交
265
            paddle.seed(seed)
L
Leo Chen 已提交
266
            paddle.framework.random._manual_program_seed(seed)
267

268
            resnet = ResNet()
269 270 271
            optimizer = optimizer_setting(
                train_parameters, parameter_list=resnet.parameters()
            )
272
            np.random.seed(seed)
273

274 275
            train_reader = paddle.batch(
                paddle.dataset.flowers.train(use_xmap=False),
276 277
                batch_size=batch_size,
            )
278 279

            dy_param_init_value = {}
M
minqiyang 已提交
280
            for param in resnet.parameters():
281
                dy_param_init_value[param.name] = param.numpy()
282

283 284
            helper = DyGraphProgramDescTracerTestHelper(self)
            program = None
285

286
            for batch_id, data in enumerate(train_reader()):
M
minqiyang 已提交
287
                if batch_id >= batch_num:
288 289
                    break

290 291 292 293 294 295 296 297
                dy_x_data = np.array(
                    [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)
                )
298 299 300

                img = to_variable(dy_x_data)
                label = to_variable(y_data)
301
                label.stop_gradient = True
302

303
                out = None
304
                out = resnet(img)
305

306 307 308
                if traced_layer is not None:
                    resnet.eval()
                    traced_layer._switch(is_test=True)
309
                    out_dygraph = resnet(img)
310 311 312 313 314
                    out_static = traced_layer([img])
                    traced_layer._switch(is_test=False)
                    helper.assertEachVar(out_dygraph, out_static)
                    resnet.train()

315 316 317
                loss = paddle.nn.functional.cross_entropy(
                    input=out, label=label, reduction='none', use_softmax=False
                )
318
                avg_loss = paddle.mean(x=loss)
319

320
                dy_out = avg_loss.numpy()
321 322

                if batch_id == 0:
M
minqiyang 已提交
323
                    for param in resnet.parameters():
324
                        if param.name not in dy_param_init_value:
325
                            dy_param_init_value[param.name] = param.numpy()
326

L
lujun 已提交
327
                avg_loss.backward()
328 329

                dy_grad_value = {}
M
minqiyang 已提交
330
                for param in resnet.parameters():
331
                    if param.trainable:
332
                        np_array = np.array(
333 334 335 336 337
                            param._grad_ivar().value().get_tensor()
                        )
                        dy_grad_value[
                            param.name + core.grad_var_suffix()
                        ] = np_array
338 339

                optimizer.minimize(avg_loss)
M
minqiyang 已提交
340
                resnet.clear_gradients()
341 342

                dy_param_value = {}
M
minqiyang 已提交
343
                for param in resnet.parameters():
344
                    dy_param_value[param.name] = param.numpy()
M
minqiyang 已提交
345 346

        with new_program_scope():
C
cnn 已提交
347
            paddle.seed(seed)
L
Leo Chen 已提交
348
            paddle.framework.random._manual_program_seed(seed)
M
minqiyang 已提交
349

350 351 352 353 354
            exe = fluid.Executor(
                fluid.CPUPlace()
                if not core.is_compiled_with_cuda()
                else fluid.CUDAPlace(0)
            )
355

356
            resnet = ResNet()
357
            optimizer = optimizer_setting(train_parameters)
M
minqiyang 已提交
358 359

            np.random.seed(seed)
360
            train_reader = paddle.batch(
M
minqiyang 已提交
361
                paddle.dataset.flowers.train(use_xmap=False),
362 363
                batch_size=batch_size,
            )
364

365 366 367
            img = fluid.layers.data(
                name='pixel', shape=[3, 224, 224], dtype='float32'
            )
368 369
            label = fluid.layers.data(name='label', shape=[1], dtype='int64')
            out = resnet(img)
370 371 372
            loss = paddle.nn.functional.cross_entropy(
                input=out, label=label, reduction='none', use_softmax=False
            )
373
            avg_loss = paddle.mean(x=loss)
374 375 376 377 378
            optimizer.minimize(avg_loss)

            # initialize params and fetch them
            static_param_init_value = {}
            static_param_name_list = []
M
minqiyang 已提交
379
            static_grad_name_list = []
M
minqiyang 已提交
380
            for param in resnet.parameters():
381
                static_param_name_list.append(param.name)
M
minqiyang 已提交
382
            for param in resnet.parameters():
383
                if param.trainable:
384 385 386
                    static_grad_name_list.append(
                        param.name + core.grad_var_suffix()
                    )
387

388 389 390 391
            out = exe.run(
                fluid.default_startup_program(),
                fetch_list=static_param_name_list,
            )
392 393 394 395 396

            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 已提交
397
                if batch_id >= batch_num:
398 399
                    break

M
minqiyang 已提交
400
                static_x_data = np.array(
401 402 403 404 405 406 407
                    [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])
                )
408

409 410 411
                if traced_layer is not None:
                    traced_layer([static_x_data])

M
minqiyang 已提交
412
                fetch_list = [avg_loss.name]
413
                fetch_list.extend(static_param_name_list)
M
minqiyang 已提交
414
                fetch_list.extend(static_grad_name_list)
415 416 417 418 419
                out = exe.run(
                    fluid.default_main_program(),
                    feed={"pixel": static_x_data, "label": y_data},
                    fetch_list=fetch_list,
                )
420 421

                static_param_value = {}
M
minqiyang 已提交
422
                static_grad_value = {}
423
                static_out = out[0]
M
minqiyang 已提交
424 425
                param_start_pos = 1
                grad_start_pos = len(static_param_name_list) + param_start_pos
426 427 428 429 430 431 432 433 434 435 436 437 438
                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]
M
minqiyang 已提交
439

H
hong 已提交
440 441
        print("static", static_out)
        print("dygraph", dy_out)
442
        np.testing.assert_allclose(static_out, dy_out, rtol=1e-05)
M
minqiyang 已提交
443 444

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

446
        for key, value in static_param_init_value.items():
447 448 449
            np.testing.assert_allclose(
                value, dy_param_init_value[key], rtol=1e-05
            )
450 451
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
452

M
minqiyang 已提交
453
        self.assertEqual(len(dy_grad_value), len(static_grad_value))
454
        for key, value in static_grad_value.items():
455
            np.testing.assert_allclose(value, dy_grad_value[key], rtol=1e-05)
456 457
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
458

M
minqiyang 已提交
459
        self.assertEqual(len(dy_param_value), len(static_param_value))
460
        for key, value in static_param_value.items():
461
            np.testing.assert_allclose(value, dy_param_value[key], rtol=1e-05)
462 463
            self.assertTrue(np.isfinite(value.all()))
            self.assertFalse(np.isnan(value.any()))
M
minqiyang 已提交
464

465 466 467 468 469
    def test_resnet_float32(self):
        with _test_eager_guard():
            self.func_test_resnet_float32()
        self.func_test_resnet_float32()

M
minqiyang 已提交
470 471

if __name__ == '__main__':
H
hong 已提交
472
    paddle.enable_static()
M
minqiyang 已提交
473
    unittest.main()