Style Transfer Python* Sample

This sample demonstrates how to do synchronous inference of style transfer networks using Network Batch Size Feature.

You can specify multiple images to input, a network batch size will be set equal to their number automatically.

Models with only 1 input and output are supported.

The following Inference Engine Python API is used in the application:

Feature

API

Description

Network Operations

IENetwork.batch_size

Managing of network: configure input and output blobs

Custom Extension Kernels

IECore.add_extension , IECore.set_config

Load extension library and config to the device

Basic Inference Engine API is covered by Hello Classification Python* Sample.

Options

Values

Validated Models

fast-neural-style-mosaic-onnx

Model Format

Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx)

Supported devices

All

Other language realization

C++

How It Works

At startup, the sample application reads command-line parameters, prepares input data, loads a specified model and image(s) to the Inference Engine plugin, performs synchronous inference, and processes output data.

As a result, the program creates an output image(s), logging each step in a standard output stream.

You can see the explicit description of each sample step at Integration Steps section of “Integrate the Inference Engine with Your Application” guide.

Running

Run the application with the -h option to see the usage message:

python <path_to_sample>/style_transfer_sample.py -h

Usage message:

usage: style_transfer_sample.py [-h] -m MODEL -i INPUT [INPUT ...]
                                [-l EXTENSION] [-c CONFIG] [-d DEVICE]
                                [--original_size] [--mean_val_r MEAN_VAL_R]
                                [--mean_val_g MEAN_VAL_G]
                                [--mean_val_b MEAN_VAL_B]

Options:
  -h, --help            Show this help message and exit.
  -m MODEL, --model MODEL
                        Required. Path to an .xml or .onnx file with a trained
                        model.
  -i INPUT [INPUT ...], --input INPUT [INPUT ...]
                        Required. Path to an image file.
  -l EXTENSION, --extension EXTENSION
                        Optional. Required by the CPU Plugin for executing the
                        custom operation on a CPU. Absolute path to a shared
                        library with the kernels implementations.
  -c CONFIG, --config CONFIG
                        Optional. Required by GPU or VPU Plugins for the
                        custom operation kernel. Absolute path to operation
                        description file (.xml).
  -d DEVICE, --device DEVICE
                        Optional. Specify the target device to infer on; CPU,
                        GPU, MYRIAD, HDDL or HETERO: is acceptable. The sample
                        will look for a suitable plugin for device specified.
                        Default value is CPU.
  --original_size       Optional. Resize an output image to original image
                        size.
  --mean_val_r MEAN_VAL_R
                        Optional. Mean value of red channel for mean value
                        subtraction in postprocessing.
  --mean_val_g MEAN_VAL_G
                        Optional. Mean value of green channel for mean value
                        subtraction in postprocessing.
  --mean_val_b MEAN_VAL_B
                        Optional. Mean value of blue channel for mean value
                        subtraction in postprocessing.

To run the sample, you need specify a model and image:

NOTES :

  • By default, Inference Engine samples and demos expect input with BGR channels order. If you trained your model to work with RGB order, you need to manually rearrange the default channels order in the sample or demo application or reconvert your model using the Model Optimizer tool with --reverse_input_channels argument specified. For more information about the argument, refer to When to Reverse Input Channels section of ../../../../../docs/MO_DG/prepare_model/convert_model/Converting_Model_General.md “Converting a Model Using General Conversion Parameters”.

  • Before running the sample with a trained model, make sure the model is converted to the Inference Engine format (*.xml + *.bin) using the Model Optimizer tool.

  • The sample accepts models in ONNX format (.onnx) that do not require preprocessing.

Example

  1. Download a pre-trained model using Model Downloader :

    python <path_to_omz_tools>/downloader.py --name fast-neural-style-mosaic-onnx
  2. fast-neural-style-mosaic-onnx model does not need to be converted, because it is already in necessary format, so you can skip this step. If you want to use a other model that is not in the Inference Engine IR or ONNX format, you can convert it using the model converter script:

python <path_to_omz_tools>/converter.py --name <model_name>
  1. Perform inference of car.bmp and cat.jpg using fast-neural-style-mosaic-onnx model on a GPU, for example:

python <path_to_sample>/style_transfer_sample.py -m <path_to_model>/fast-neural-style-mosaic-onnx.onnx -i <path_to_image>/car.bmp <path_to_image>/cat.jpg -d GPU

Sample Output

The sample application logs each step in a standard output stream and creates an output image (out_0.bmp) or a sequence of images (out_0.bmp, .., out_<n>.bmp) that are redrawn in the style of the style transfer model used.

[ INFO ] Creating Inference Engine
[ INFO ] Reading the network: c:\openvino\deployment_tools\open_model_zoo\tools\downloader\public\fast-neural-style-mosaic-onnx\fast-neural-style-mosaic-onnx.onnx
[ INFO ] Configuring input and output blobs
[ INFO ] Loading the model to the plugin
[ WARNING ] Image c:\images\car.bmp is resized from (637, 749) to (224, 224)
[ WARNING ] Image c:\images\cat.jpg is resized from (300, 300) to (224, 224)
[ INFO ] Starting inference in synchronous mode
[ INFO ] Image out_0.bmp created!
[ INFO ] Image out_1.bmp created!
[ INFO ] This sample is an API example, for any performance measurements please use the dedicated benchmark_app tool