resnext.py 7.5 KB
Newer Older
1
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
W
WuHaobo 已提交
2
#
3 4 5
# 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
W
WuHaobo 已提交
6 7 8
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
9 10 11 12 13
# 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.
W
WuHaobo 已提交
14 15 16 17 18

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

19
import numpy as np
W
WuHaobo 已提交
20 21 22
import paddle
import paddle.fluid as fluid
from paddle.fluid.param_attr import ParamAttr
23 24 25
from paddle.fluid.dygraph.nn import Conv2D, Pool2D, BatchNorm, Linear, Dropout

import math
W
WuHaobo 已提交
26 27

__all__ = [
28 29
    "ResNeXt50_32x4d", "ResNeXt50_64x4d", "ResNeXt101_32x4d",
    "ResNeXt101_64x4d", "ResNeXt152_32x4d", "ResNeXt152_64x4d"
W
WuHaobo 已提交
30 31 32
]


33 34 35 36 37 38 39 40 41 42
class ConvBNLayer(fluid.dygraph.Layer):
    def __init__(self,
                 num_channels,
                 num_filters,
                 filter_size,
                 stride=1,
                 groups=1,
                 act=None,
                 name=None):
        super(ConvBNLayer, self).__init__()
W
WuHaobo 已提交
43

44 45
        self._conv = Conv2D(
            num_channels=num_channels,
W
WuHaobo 已提交
46 47 48 49 50 51 52
            num_filters=num_filters,
            filter_size=filter_size,
            stride=stride,
            padding=(filter_size - 1) // 2,
            groups=groups,
            act=None,
            param_attr=ParamAttr(name=name + "_weights"),
53
            bias_attr=False)
W
WuHaobo 已提交
54 55 56 57
        if name == "conv1":
            bn_name = "bn_" + name
        else:
            bn_name = "bn" + name[3:]
58 59
        self._batch_norm = BatchNorm(
            num_filters,
W
WuHaobo 已提交
60 61 62 63
            act=act,
            param_attr=ParamAttr(name=bn_name + '_scale'),
            bias_attr=ParamAttr(bn_name + '_offset'),
            moving_mean_name=bn_name + '_mean',
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
            moving_variance_name=bn_name + '_variance')

    def forward(self, inputs):
        y = self._conv(inputs)
        y = self._batch_norm(y)
        return y


class BottleneckBlock(fluid.dygraph.Layer):
    def __init__(self,
                 num_channels,
                 num_filters,
                 stride,
                 cardinality,
                 shortcut=True,
                 name=None):
        super(BottleneckBlock, self).__init__()

        self.conv0 = ConvBNLayer(
            num_channels=num_channels,
W
WuHaobo 已提交
84 85 86 87
            num_filters=num_filters,
            filter_size=1,
            act='relu',
            name=name + "_branch2a")
88 89
        self.conv1 = ConvBNLayer(
            num_channels=num_filters,
W
WuHaobo 已提交
90 91 92
            num_filters=num_filters,
            filter_size=3,
            groups=cardinality,
93
            stride=stride,
W
WuHaobo 已提交
94 95
            act='relu',
            name=name + "_branch2b")
96 97 98
        self.conv2 = ConvBNLayer(
            num_channels=num_filters,
            num_filters=num_filters * 2 if cardinality == 32 else num_filters,
W
WuHaobo 已提交
99 100 101 102
            filter_size=1,
            act=None,
            name=name + "_branch2c")

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
        if not shortcut:
            self.short = ConvBNLayer(
                num_channels=num_channels,
                num_filters=num_filters * 2
                if cardinality == 32 else num_filters,
                filter_size=1,
                stride=stride,
                name=name + "_branch1")

        self.shortcut = shortcut

    def forward(self, inputs):
        y = self.conv0(inputs)
        conv1 = self.conv1(y)
        conv2 = self.conv2(conv1)

        if self.shortcut:
            short = inputs
        else:
            short = self.short(inputs)

littletomatodonkey's avatar
littletomatodonkey 已提交
124 125
        y = fluid.layers.elementwise_add(x=short, y=conv2, act='relu')
        return y
126

W
WuHaobo 已提交
127

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
class ResNeXt(fluid.dygraph.Layer):
    def __init__(self, layers=50, class_dim=1000, cardinality=32):
        super(ResNeXt, self).__init__()

        self.layers = layers
        self.cardinality = cardinality
        supported_layers = [50, 101, 152]
        assert layers in supported_layers, \
            "supported layers are {} but input layer is {}".format(
                supported_layers, layers)
        supported_cardinality = [32, 64]
        assert cardinality in supported_cardinality, \
            "supported cardinality is {} but input cardinality is {}" \
            .format(supported_cardinality, cardinality)
        if layers == 50:
            depth = [3, 4, 6, 3]
        elif layers == 101:
            depth = [3, 4, 23, 3]
        elif layers == 152:
            depth = [3, 8, 36, 3]
        num_channels = [64, 256, 512, 1024]
        num_filters = [128, 256, 512,
                       1024] if cardinality == 32 else [256, 512, 1024, 2048]
W
WuHaobo 已提交
151

152 153 154 155 156 157 158 159 160
        self.conv = ConvBNLayer(
            num_channels=3,
            num_filters=64,
            filter_size=7,
            stride=2,
            act='relu',
            name="res_conv1")
        self.pool2d_max = Pool2D(
            pool_size=3, pool_stride=2, pool_padding=1, pool_type='max')
W
WuHaobo 已提交
161

162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
        self.block_list = []
        for block in range(len(depth)):
            shortcut = False
            for i in range(depth[block]):
                if layers in [101, 152] and block == 2:
                    if i == 0:
                        conv_name = "res" + str(block + 2) + "a"
                    else:
                        conv_name = "res" + str(block + 2) + "b" + str(i)
                else:
                    conv_name = "res" + str(block + 2) + chr(97 + i)
                bottleneck_block = self.add_sublayer(
                    'bb_%d_%d' % (block, i),
                    BottleneckBlock(
                        num_channels=num_channels[block] if i == 0 else
                        num_filters[block] * int(64 // self.cardinality),
                        num_filters=num_filters[block],
                        stride=2 if i == 0 and block != 0 else 1,
                        cardinality=self.cardinality,
                        shortcut=shortcut,
                        name=conv_name))
                self.block_list.append(bottleneck_block)
                shortcut = True

        self.pool2d_avg = Pool2D(
            pool_size=7, pool_type='avg', global_pooling=True)

        self.pool2d_avg_channels = num_channels[-1] * 2

        stdv = 1.0 / math.sqrt(self.pool2d_avg_channels * 1.0)

        self.out = Linear(
            self.pool2d_avg_channels,
            class_dim,
            param_attr=ParamAttr(
                initializer=fluid.initializer.Uniform(-stdv, stdv),
                name="fc_weights"),
            bias_attr=ParamAttr(name="fc_offset"))

    def forward(self, inputs):
        y = self.conv(inputs)
        y = self.pool2d_max(y)
        for block in self.block_list:
            y = block(y)
        y = self.pool2d_avg(y)
        y = fluid.layers.reshape(y, shape=[-1, self.pool2d_avg_channels])
        y = self.out(y)
        return y


def ResNeXt50_32x4d(**args):
    model = ResNeXt(layers=50, cardinality=32, **args)
W
WuHaobo 已提交
214 215 216
    return model


217 218
def ResNeXt50_64x4d(**args):
    model = ResNeXt(layers=50, cardinality=64, **args)
W
WuHaobo 已提交
219 220 221
    return model


222 223
def ResNeXt101_32x4d(**args):
    model = ResNeXt(layers=101, cardinality=32, **args)
W
WuHaobo 已提交
224 225 226
    return model


227 228
def ResNeXt101_64x4d(**args):
    model = ResNeXt(layers=101, cardinality=64, **args)
W
WuHaobo 已提交
229 230 231
    return model


232 233
def ResNeXt152_32x4d(**args):
    model = ResNeXt(layers=152, cardinality=32, **args)
W
WuHaobo 已提交
234 235 236
    return model


237 238
def ResNeXt152_64x4d(**args):
    model = ResNeXt(layers=152, cardinality=64, **args)
W
WuHaobo 已提交
239
    return model