* First draft of nGraph documentation * updated according to review comments * Updated * Reviewed the nGraph Transformation section, added missing images * Update nGraph_dg.md * Delete python_api.md Removed since there is already the nGraph_Python_API.md document with a comprehensive overview. * Fixed links to images Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com> Co-authored-by: CCR\avladimi <anastasiya.ageeva@intel.com>
7.5 KiB
Using Shape Inference
Inference Engine takes three kinds of a model description as an input, which are converted into an InferenceEngine::CNNNetwork object:
- Intermediate Representation (IR) through
InferenceEngine::Core::ReadNetwork - ONNX model through
InferenceEngine::Core::ReadNetwork - nGraph::Function through the constructor of
InferenceEngine::CNNNetwork
InferenceEngine::CNNNetwork keeps an ngraph::Function object with the model description internally.
The object should have fully defined input shapes to be successfully loaded to the Inference Engine plugins.
To resolve undefined input dimensions of a model, call the CNNNetwork::reshape method providing new input shapes before loading to the Inference Engine plugin.
Run the following code right after InferenceEngine::CNNNetwork creation to explicitly check for model input names and shapes:
CNNNetwork network = ... // read IR / ONNX model or create from nGraph::Function explicitly
const auto parameters = network.getFunction()->get_parameters();
for (const auto & parameter : parameters) {
std::cout << "name: " << parameter->get_friendly_name() << " shape: " << parameter->get_partial_shape() << std::endl;
if (parameter->get_partial_shape().is_dynamic())
std::cout << "ATTENTION: Input shape is not fully defined. Use the CNNNetwork::reshape method to resolve it." << std::endl;
}
To feed input data of a shape that is different from the model input shape, reshape the model first.
OpenVINO™ provides the following methods for runtime model reshaping:
- Set a new input shape with the
InferenceEngine::CNNNetwork::reshapemethod.
TheInferenceEngine::CNNNetwork::reshapemethod updates input shapes and propagates them down to the outputs of the model through all intermediate layers. You can reshape a model multiple times like in this application scheme:ReadNetwork -> reshape(input_1_shape) -> LoadNetwork -> infer(input_1) \ -> reshape(input_2_shape) -> LoadNetwork -> infer(input_2)NOTES:
- Starting with the 2021.1 release, the Model Optimizer converts topologies keeping shape-calculating sub-graphs by default, which enables correct shape propagation during reshaping.
- Older versions of IRs are not guaranteed to reshape successfully. Please regenerate them with the Model Optimizer of the latest version of OpenVINO™.
- If an ONNX model does not have a fully defined input shape and the model was imported with the ONNX importer, reshape the model before loading it to the plugin.
- Set a new batch dimension value with the
InferenceEngine::CNNNetwork::setBatchSizemethod.
The meaning of a model batch may vary depending on the model design. TheInferenceEngine::CNNNetwork::setBatchSizemethod deduces the index of a batch dimension based only on the input rank. This method does not work for models with a non-zero index batch placement or models with inputs without a batch dimension. The batch-setting algorithm does not involve the shape inference mechanism. Batch of input and output shapes for all layers is set to a new batch value without layer validation. It may cause both positive and negative side effects. Due to the limitations described above, the current method is not recommended to use. If you need to set a new batch size for the model, use theCNNNetwork::reshapemethod instead.
Do not use runtime reshaping methods simultaneously, especially do not call the CNNNetwork::reshape method after you use InferenceEngine::CNNNetwork::setBatchSize.
The InferenceEngine::CNNNetwork::setBatchSize method causes irreversible conversion of the internal model representation into the legacy model representation.
The method does not use nGraph for shape inference which leads to reduced reshape opportunities and may affect the performance of the model.
There are other approaches to reshape the model during the stage of IR generation or nGraph::Function creation.
Practically, some models are not ready to be reshaped. In this case, a new input shape cannot be set with the Model Optimizer or the InferenceEngine::CNNNetwork::reshape method.
Troubleshooting Reshape Errors
Operation semantics may impose restrictions on input shapes of the operation. Shape collision during shape propagation may be a sign that a new shape does not satisfy the restrictions. Changing the model input shape may result in intermediate operations shape collision.
Examples of such operations:
Reshapeoperation with a hard-coded output shape valueMatMuloperation with theConstsecond input cannot be resized by spatial dimensions due to operation semantics
Model structure and logic should not change significantly after model reshaping.
-
The Global Pooling operation is commonly used to reduce output feature map of classification models output. Having the input of the shape [N, C, H, W], Global Pooling returns the output of the shape [N, C, 1, 1]. Model architects usually express Global Pooling with the help of the
Poolingoperation with the fixed kernel size [H, W]. During spatial reshape, having the input of the shape [N, C, H1, W1], Pooling with the fixed kernel size [H, W] returns the output of the shape [N, C, H2, W2], where H2 and W2 are commonly not equal to1. It breaks the classification model structure. For example, publicly available Inception family models from TensorFlow* have this issue. -
Changing the model input shape may significantly affect its accuracy. For example, Object Detection models from TensorFlow have resizing restrictions by design. To keep the model valid after the reshape, choose a new input shape that satisfies conditions listed in the
pipeline.configfile. For details, refer to the Tensorflow Object Detection API models resizing techniques.
Usage of Reshape Method
The primary method of the feature is InferenceEngine::CNNNetwork::reshape.
It gets new input shapes and propagates it from input to output for all intermediates layers of the given network.
The method takes InferenceEngine::ICNNNetwork::InputShapes - a map of pairs: name of input data and its dimension.
The algorithm for resizing network is the following:
-
Collect the map of input names and shapes from Intermediate Representation (IR) using helper method
InferenceEngine::CNNNetwork::getInputShapes -
Set new input shapes
-
Call reshape
Here is a code example:
@snippet openvino/docs/snippets/ShapeInference.cpp part0
Shape Inference feature is used in [Smart classroom sample](@ref omz_demos_smart_classroom_demo_README).
Extensibility
Inference Engine provides a special mechanism that allows to add the support of shape inference for custom operations. This mechanism is described in the Extensibility documentation