• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

GluonConverter: Convert MXNet-Gluon model to Caffe.

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

GluonConverter

开源软件地址:

https://gitee.com/RainweicHome/GluonConverter

开源软件介绍:

Gluon Converter

Convert MXNet-Gluon model to Caffe.

Requirements

  • python >= 3.6 (f-string is used in codes)
  • mxnet
  • gluoncv
  • numpy
  • caffe(optional)

Usage

  1. Construct your gluon model, for example
    from gluoncv import resnet18_v1net = resnet18_v1(pretrained=True)
  2. Convert it to caffe NetParamert, for example
    from convert import convert_modeltext_net, binary_weights = convert_model(net, input_shape=(1,3,224,224), softmax=False, to_bgr=True, merge_bn=True)
    For caffe, the order of inputs' channels is often BGR but not RGB.
    if you want to convert a ssd-like model in gluoncv, please use convert_ssd_model API but not convert_model.
  3. Save to files, for example
    from convert import save_modelsave_model(text_net, binary_weights, prefix="tmp/resnet18_v1")

How do I convert a ssd-like model?

  1. To fetch attributes needed by PriorBox and DetectionOutput layers, convert_ssd_model will extract them from gluon-net and anchors, box_decoder, class_decoder in it.
  2. Before convert symbols to caffemodel, fake symbols for priorbox and detction_output are added into the origin symbols.
  3. Since step could not be extract from anchors in gluon-net, it will be setted by default in caffe (step=img_size/layer_size, refer to caffe-ssd/prior_box_layer.cpp).
    You can create an instance of gluoncv.model_zoo.SSD and train it as gluoncv/scripts/detection/ssd/train_ssd.py, for example, ssd300_mobilenetv2 --
    from gluoncv.model_zoo import SSDimage_size = 300layer_size = (19, 10, 5, 3, 2, 1)net = SSD(network="mobilenetv2_1.0",       base_size=image_size,       features=['features_linearbottleneck12_elemwise_add0_output',     # FeatureMap: 19x19                'features_linearbottleneck16_batchnorm2_fwd_output'],   # FeatureMap: 10x10      num_filters=[256, 256, 128, 128],    # Expand feature extractor with FeatureMaps: 5x5, 3x3, 2x2, 1x1 (stride=2)      sizes=[21, 45, 99, 153, 207, 261, 315],      ratios=[[1, 2, 0.5]] + [[1, 2, 0.5, 3, 1.0/3]] * 3 + [[1, 2, 0.5]] * 2,      steps=[image_size/layer_size for layer_size in layer_size],   # Default setting in DetectionOutput caffe-layer      classes=['A', 'B', 'C'],      pretrained=True)# ...train as train_ssd.py

I've tested the ssd models converted from gluoncv on caffe-ssd and ncnn and they works well.

How to convert MobileNetv2?

ReLU6 is one of components in MobileNetv2, which is implemented with a clip symbol with range [0,6]. But caffe does not support clip. Therefore, to convert MobileNetv2, converter will replace clip symbol with range [0,6] with Activation(relu). And of course, some errors will be introduced especially for quantized-models.
However, as I know, some branches of caffe and some platform(such as ncnn) support ReLU6, please reset the type of activation layers manually if you want to deploy it to such branches or platforms.

Support Layers

  • Convolution -> Convolution
  • BatchNorm -> BatchNorm & Scale
  • Activation (relu only) -> ReLU
  • Pooling -> Pooling (MAX/AVG)
  • elemwise_add -> Eltwise (ADD)
  • FullyConnected -> InnerProduct
  • Flatten -> Flatten
  • Concat -> Concat
  • Dropout -> Dropout
  • softmax -> Softmax
  • transpose -> Permute (caffe-ssd)
  • Reshape -> Reshape (caffe-ssd)
  • ReLU6 -> ReLU

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap