mobilenet_ssd.py 4.1 KB
Newer Older
G
gaoyuan 已提交
1 2 3 4 5
import paddle.fluid as fluid
from paddle.fluid.initializer import MSRA
from paddle.fluid.param_attr import ParamAttr


6 7 8 9 10
class MobileNetSSD:
    def __init__(self, img, num_classes, img_shape):
        self.img = img
        self.num_classes = num_classes
        self.img_shape = img_shape
G
gaoyuan 已提交
11

12 13
    def ssd_net(self, scale=1.0):
        # 300x300
14
        tmp = self.conv_bn(self.img, 3, int(32 * scale), 2, 1)
15 16 17 18 19 20 21 22 23
        # 150x150
        tmp = self.depthwise_separable(tmp, 32, 64, 32, 1, scale)
        tmp = self.depthwise_separable(tmp, 64, 128, 64, 2, scale)
        # 75x75
        tmp = self.depthwise_separable(tmp, 128, 128, 128, 1, scale)
        tmp = self.depthwise_separable(tmp, 128, 256, 128, 2, scale)
        # 38x38
        tmp = self.depthwise_separable(tmp, 256, 256, 256, 1, scale)
        tmp = self.depthwise_separable(tmp, 256, 512, 256, 2, scale)
G
gaoyuan 已提交
24

25 26 27 28 29
        # 19x19
        for i in range(5):
            tmp = self.depthwise_separable(tmp, 512, 512, 512, 1, scale)
        module11 = tmp
        tmp = self.depthwise_separable(tmp, 512, 1024, 512, 2, scale)
G
gaoyuan 已提交
30

31 32
        # 10x10
        module13 = self.depthwise_separable(tmp, 1024, 1024, 1024, 1, scale)
33
        module14 = self.extra_block(module13, 256, 512, 1, 2)
34
        # 5x5
35
        module15 = self.extra_block(module14, 128, 256, 1, 2)
36
        # 3x3
37
        module16 = self.extra_block(module15, 128, 256, 1, 2)
38
        # 2x2
39
        module17 = self.extra_block(module16, 64, 128, 1, 2)
G
gaoyuan 已提交
40

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
        mbox_locs, mbox_confs, box, box_var = fluid.layers.multi_box_head(
            inputs=[
                module11, module13, module14, module15, module16, module17
            ],
            image=self.img,
            num_classes=self.num_classes,
            min_ratio=20,
            max_ratio=90,
            min_sizes=[60.0, 105.0, 150.0, 195.0, 240.0, 285.0],
            max_sizes=[[], 150.0, 195.0, 240.0, 285.0, 300.0],
            aspect_ratios=[[2.], [2., 3.], [2., 3.], [2., 3.], [2., 3.],
                           [2., 3.]],
            base_size=self.img_shape[2],
            offset=0.5,
            flip=True)
G
gaoyuan 已提交
56

57
        return mbox_locs, mbox_confs, box, box_var
G
gaoyuan 已提交
58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    def conv_bn(self,
                input,
                filter_size,
                num_filters,
                stride,
                padding,
                num_groups=1,
                act='relu',
                use_cudnn=True):
        parameter_attr = ParamAttr(learning_rate=0.1, initializer=MSRA())
        conv = fluid.layers.conv2d(
            input=input,
            num_filters=num_filters,
            filter_size=filter_size,
            stride=stride,
            padding=padding,
            groups=num_groups,
            act=None,
            use_cudnn=use_cudnn,
            param_attr=parameter_attr,
            bias_attr=False)
        return fluid.layers.batch_norm(input=conv, act=act)
G
gaoyuan 已提交
81

82 83 84 85 86 87 88 89 90 91
    def depthwise_separable(self, input, num_filters1, num_filters2, num_groups,
                            stride, scale):
        depthwise_conv = self.conv_bn(
            input=input,
            filter_size=3,
            num_filters=int(num_filters1 * scale),
            stride=stride,
            padding=1,
            num_groups=int(num_groups * scale),
            use_cudnn=False)
G
gaoyuan 已提交
92

93 94 95 96 97 98 99
        pointwise_conv = self.conv_bn(
            input=depthwise_conv,
            filter_size=1,
            num_filters=int(num_filters2 * scale),
            stride=1,
            padding=0)
        return pointwise_conv
G
gaoyuan 已提交
100

101
    def extra_block(self, input, num_filters1, num_filters2, num_groups, stride):
102 103 104 105
        # 1x1 conv
        pointwise_conv = self.conv_bn(
            input=input,
            filter_size=1,
106
            num_filters=int(num_filters1),
107
            stride=1,
108
            num_groups=int(num_groups),
109
            padding=0)
G
gaoyuan 已提交
110

111 112 113 114
        # 3x3 conv
        normal_conv = self.conv_bn(
            input=pointwise_conv,
            filter_size=3,
115
            num_filters=int(num_filters2),
116
            stride=2,
117
            num_groups=int(num_groups),
118 119
            padding=1)
        return normal_conv
X
Xingyuan Bu 已提交
120

G
gaoyuan 已提交
121

122 123 124
def build_mobilenet_ssd(img, num_classes, img_shape):
    ssd_model = MobileNetSSD(img, num_classes, img_shape)
    return ssd_model.ssd_net()