基于darknet框架的mobilenet

来源:互联网 发布:游戏美工需要学什么 编辑:程序博客网 时间:2024/05/29 18:56

这里介绍关于Google的文章(MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications)中的网络结构,作者通过3*3的分组卷积和1*1的正常卷积代替原来的3*3正常卷积,由于group conv layer 只是在feature map 的每一个channel上进行操作,这样大大减少了未知量,加快了运算速度。

通过给darknet框架增加group conv layer 实现了基于darknet的mobilenet, 由于mobilenet本身还很冗余,后面将进一步对结构进行剪枝操作。


基于darknet的cfg 和 weights 在我的github上, 地址: https://github.com/zunzhumu/darknet-mobilenet


输入图像为448*448 top-1精度为71.1%,top-5精度为90.5%

原创粉丝点击