How to configure Caffe launcher

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

You also can specify batch size for your model using batch and allow to reshape input layer to data shape, using specific parameter: allow_reshape_input (default value is False).

Specifying model inputs in config.

In case when you model has several inputs you should provide list of input layers in launcher config section using key inputs. Each input description should has following info:

Caffe launcher config example:

launchers:
- framework: caffe
device: CPU
model: path_to_model/alexnet.prototxt
weights: path_to_weights/alexnet.caffemodel
adapter: classification
batch: 4