How to configure MxNet launcher

For enabling MxNet launcher you need to add framework: mxnet in launchers section of your configuration file and provide following parameters:

You also should specify all inputs for your model and provide their shapes, using specific parameter: inputs. Each input description should has following info:

MxNet launcher config example:

launchers:
- framework: mxnet
device: CPU
model: path_to_model/alexnet-0000.params
inputs:
- name: 'input'
type: INPUT
shape: 3, 32, 32
adapter: classification