前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >实时目标检测--Pelee: A Real-Time Object Detection System on Mobile Devices

实时目标检测--Pelee: A Real-Time Object Detection System on Mobile Devices

作者头像
用户1148525
发布2019-05-26 11:46:55
7650
发布2019-05-26 11:46:55
举报

Pelee: A Real-Time Object Detection System on Mobile Devices ICLR 2018 Code: https://github.com/Robert-JunWang/Pelee

CNN模型在嵌入式设备中运行成为一种趋势,为此提出了一些模型如 MobileNet, ShuffleNet, and NASNet-A,他们主要依赖于 depthwise separable convolution , 但是在当前主要深度学习框架中,depthwise separable convolution 没有被高效的实现, lacks efficient implementation。这里我们提出了一个网络结构 PeleeNet,它基于 conventional convolution。

PeleeNet 主要特征模块: 1)Two-Way Dense Layer : to get different scales of receptive fields 2)Stem Block:This stem block can effectively improve the feature expression ability without adding computational cost too much

在这里插入图片描述
在这里插入图片描述

3) Dynamic Number of Channels in Bottleneck Layer 根据输入形状 动态 决定通道数目, this method can save up to 28.5% of the computational cost with a small impact on accuracy

4) Transition Layer without Compression 我们的实验显示 在 transition layers 中进行压缩会伤害 feature expression

5)Composite Function 为了提速,我们使用 post-activation (Convolution - Batch Normalization - Relu For post-activation, all batch normalization layers can be merged with convolution layer at the inference stage, which can accelerate the speed greatly.

针对目标检测问题,我们将 PeleeNet 嵌入到 SSD 中,主要注意点如下: 1) Feature Map Selection:我们选择了 5 scale feature maps (19 x 19, 10 x 10, 5 x 5, 3 x 3, and 1 x 1). 为了节约计算,我们没有选择 38 x 38 feature map 2)Residual Prediction Block : 加了一个 a residual block (ResBlock) before conducting prediction. 3) Small Convolutional Kernel for Prediction:1x1 kernels reduce the computational cost by 21.5%

在这里插入图片描述
在这里插入图片描述

Overview of PeleeNet architecture

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

11

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年10月26日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档