Converting a TensorFlow* Model
A summary of the steps for optimizing and deploying a model that was trained with the TensorFlow* framework:
- Configure the Model Optimizer for TensorFlow* (TensorFlow was used to train your model).
- Freeze the TensorFlow model if your model is not already frozen or skip this step and use the instruction to a convert a non-frozen model.
- Convert a TensorFlow* model to produce an optimized Intermediate Representation (IR) of the model based on the trained network topology, weights, and biases values.
- Test the model in the Intermediate Representation format using the Inference Engine in the target environment via provided sample applications.
- Integrate the Inference Engine in your application to deploy the model in the target environment.
Supported Topologies
Supported Non-Frozen Topologies with Links to the Associated Slim Model Classification Download Files
Detailed information on how to convert models from the TensorFlow*-Slim Image Classification Model Library is available in the Converting TensorFlow*-Slim Image Classification Model Library Models chapter. The table below contains list of supported TensorFlow*-Slim Image Classification Model Library models and required mean/scale values. The mean values are specified as if the input image is read in BGR channels order layout like Inference Engine classification sample does.
| Model Name | Slim Model Checkpoint File | --mean_values | --scale |
|---|---|---|---|
| Inception v1 | inception_v1_2016_08_28.tar.gz | [127.5,127.5,127.5] | 127.5 |
| Inception v2 | inception_v1_2016_08_28.tar.gz | [127.5,127.5,127.5] | 127.5 |
| Inception v3 | inception_v3_2016_08_28.tar.gz | [127.5,127.5,127.5] | 127.5 |
| Inception V4 | inception_v4_2016_09_09.tar.gz | [127.5,127.5,127.5] | 127.5 |
| Inception ResNet v2 | inception_resnet_v2_2016_08_30.tar.gz | [127.5,127.5,127.5] | 127.5 |
| MobileNet v1 128 | mobilenet_v1_0.25_128.tgz | [127.5,127.5,127.5] | 127.5 |
| MobileNet v1 160 | mobilenet_v1_0.5_160.tgz | [127.5,127.5,127.5] | 127.5 |
| MobileNet v1 224 | mobilenet_v1_1.0_224.tgz | [127.5,127.5,127.5] | 127.5 |
| NasNet Large | nasnet-a_large_04_10_2017.tar.gz | [127.5,127.5,127.5] | 127.5 |
| NasNet Mobile | nasnet-a_mobile_04_10_2017.tar.gz | [127.5,127.5,127.5] | 127.5 |
| ResidualNet-50 v1 | resnet_v1_50_2016_08_28.tar.gz | [103.94,116.78,123.68] | 1 |
| ResidualNet-50 v2 | resnet_v2_50_2017_04_14.tar.gz | [103.94,116.78,123.68] | 1 |
| ResidualNet-101 v1 | resnet_v1_101_2016_08_28.tar.gz | [103.94,116.78,123.68] | 1 |
| ResidualNet-101 v2 | resnet_v2_101_2017_04_14.tar.gz | [103.94,116.78,123.68] | 1 |
| ResidualNet-152 v1 | resnet_v1_152_2016_08_28.tar.gz | [103.94,116.78,123.68] | 1 |
| ResidualNet-152 v2 | resnet_v2_152_2017_04_14.tar.gz | [103.94,116.78,123.68] | 1 |
| VGG-16 | vgg_16_2016_08_28.tar.gz | [103.94,116.78,123.68] | 1 |
| VGG-19 | vgg_19_2016_08_28.tar.gz | [103.94,116.78,123.68] | 1 |
Supported Pre-Trained Topologies from TensorFlow 1 Object Detection Models Zoo
Detailed information on how to convert models from the TensorFlow 1 Detection Model Zoo is available in the Converting TensorFlow Object Detection API Models chapter. The table below contains models from the Object Detection Models zoo that are supported.
Supported Pre-Trained Topologies from TensorFlow 2 Object Detection Models Zoo
Detailed information on how to convert models from the TensorFlow 2 Detection Model Zoo is available in the Converting TensorFlow Object Detection API Models chapter. The table below contains models from the Object Detection Models zoo that are supported.
Supported Frozen Quantized Topologies
The topologies hosted on the TensorFlow* Lite site. The frozen model file (.pb file) should be fed to the Model Optimizer.
It is necessary to specify the following command line parameters for the Model Optimizer to convert some of the models from the list above: --input input --input_shape [1,HEIGHT,WIDTH,3].
Where HEIGHT and WIDTH are the input images height and width for which the model was trained.
Other supported topologies
| Model Name | Repository |
|---|---|
| ResNext | Repo |
| DenseNet | Repo |
| CRNN | Repo |
| NCF | Repo |
| lm_1b | Repo |
| DeepSpeech | Repo |
| A3C | Repo |
| VDCNN | Repo |
| Unet | Repo |
| Keras-TCN | Repo |
| PRNet | Repo |
| YOLOv4 | Repo |
| STN | Repo |
- YOLO topologies from DarkNet* can be converted using instruction,
- FaceNet topologies can be converted using instruction.
- CRNN topologies can be converted using instruction.
- NCF topologies can be converted using instruction
- GNMT topology can be converted using instruction
- BERT topology can be converted using this instruction.
- XLNet topology can be converted using this instruction.
Loading Non-Frozen Models to the Model Optimizer
There are three ways to store non-frozen TensorFlow models and load them to the Model Optimizer:
-
Checkpoint:
In this case, a model consists of two files: -
inference_graph.pborinference_graph.pbtxt-checkpoint_file.ckptIf you do not have an inference graph file, refer to Freezing Custom Models in Python.
To convert such TensorFlow model:
- Go to the
<INSTALL_DIR>/deployment_tools/model_optimizerdirectory -
Run the
mo_tf.pyscript with the path to the checkpoint file to convert a model: -
If input model is in
.pbformat:
- Go to the
python3 mo_tf.py --input_model <INFERENCE_GRAPH>.pb --input_checkpoint <INPUT_CHECKPOINT>
* If input model is in `.pbtxt` format:<br>
python3 mo_tf.py --input_model <INFERENCE_GRAPH>.pbtxt --input_checkpoint <INPUT_CHECKPOINT> --input_model_is_text
-
MetaGraph:
In this case, a model consists of three or four files stored in the same directory: -
model_name.meta-model_name.index-model_name.data-00000-of-00001(digit part may vary) -checkpoint(optional)To convert such TensorFlow model:
- Go to the
<INSTALL_DIR>/deployment_tools/model_optimizerdirectory - Run the
mo_tf.pyscript with a path to the MetaGraph.metafile to convert a model:
- Go to the
python3 mo_tf.py --input_meta_graph <INPUT_META_GRAPH>.meta
-
SavedModel format of TensorFlow 1.x and 2.x versions:
In this case, a model consists of a special directory with a
.pbfile and several subfolders:variables,assets, andassets.extra. For more information about the SavedModel directory, refer to the README file in the TensorFlow repository.To convert such TensorFlow model:
- Go to the
<INSTALL_DIR>/deployment_tools/model_optimizerdirectory - Run the
mo_tf.pyscript with a path to the SavedModel directory to convert a model:
- Go to the
python3 mo_tf.py --saved_model_dir <SAVED_MODEL_DIRECTORY>
You can convert TensorFlow 1.x SavedModel format in the environment that has a 1.x or 2.x version of TensorFlow. However, TensorFlow 2.x SavedModel format strictly requires the 2.x version of TensorFlow.
If a model contains operations currently unsupported by OpenVINO, prune these operations by explicit specification of input nodes using the --input option.
To determine custom input nodes, display a graph of the model in TensorBoard. To generate TensorBoard logs of the graph, use the --tensorboard_logs option.
TensorFlow 2.x SavedModel format has a specific graph due to eager execution. In case of pruning, find custom input nodes in the StatefulPartitionedCall/* subgraph of TensorFlow 2.x SavedModel format.
Freezing Custom Models in Python*
When a network is defined in Python* code, you have to create an inference graph file. Usually graphs are built in a form that allows model training. That means that all trainable parameters are represented as variables in the graph. To be able to use such graph with Model Optimizer such graph should be frozen. The graph is frozen and dumped to a file with the following code:
import tensorflow as tf
from tensorflow.python.framework import graph_io
frozen = tf.graph_util.convert_variables_to_constants(sess, sess.graph_def, ["name_of_the_output_node"])
graph_io.write_graph(frozen, './', 'inference_graph.pb', as_text=False)
Where:
sessis the instance of the TensorFlow* Session object where the network topology is defined.["name_of_the_output_node"]is the list of output node names in the graph;frozengraph will include only those nodes from the originalsess.graph_defthat are directly or indirectly used to compute given output nodes.'name_of_the_output_node'here is an example of possible output node name. You should derive the names based on your own graph../is the directory where the inference graph file should be generated.inference_graph.pbis the name of the generated inference graph file.as_textspecifies whether the generated file should be in human readable text format or binary.
Convert a TensorFlow* Model
To convert a TensorFlow model:
- Go to the
<INSTALL_DIR>/deployment_tools/model_optimizerdirectory - Use the
mo_tf.pyscript to simply convert a model with the path to the input model.pbfile:
python3 mo_tf.py --input_model <INPUT_MODEL>.pb
Two groups of parameters are available to convert your model:
- Framework-agnostic parameters: These parameters are used to convert any model trained in any supported framework.
- TensorFlow-specific parameters: Parameters used to convert only TensorFlow models.
NOTE: The color channel order (RGB or BGR) of an input data should match the channel order of the model training dataset. If they are different, perform the
RGB<->BGRconversion specifying the command-line parameter:--reverse_input_channels. Otherwise, inference results may be incorrect. For more information about the parameter, refer to When to Reverse Input Channels section of Converting a Model Using General Conversion Parameters.
Using TensorFlow*-Specific Conversion Parameters
The following list provides the TensorFlow*-specific parameters.
TensorFlow*-specific parameters:
--input_model_is_text
TensorFlow*: treat the input model file as a text
protobuf format. If not specified, the Model Optimizer
treats it as a binary file by default.
--input_checkpoint INPUT_CHECKPOINT
TensorFlow*: variables file to load.
--input_meta_graph INPUT_META_GRAPH
Tensorflow*: a file with a meta-graph of the model
before freezing
--saved_model_dir SAVED_MODEL_DIR
TensorFlow*: directory with a model in SavedModel format
of TensorFlow 1.x or 2.x version
--saved_model_tags SAVED_MODEL_TAGS
Group of tag(s) of the MetaGraphDef to load, in string
format, separated by ','. For tag-set contains
multiple tags, all tags must be passed in.
--tensorflow_custom_operations_config_update TENSORFLOW_CUSTOM_OPERATIONS_CONFIG_UPDATE
TensorFlow*: update the configuration file with node
name patterns with input/output nodes information.
--tensorflow_object_detection_api_pipeline_config TENSORFLOW_OBJECT_DETECTION_API_PIPELINE_CONFIG
TensorFlow*: path to the pipeline configuration file
used to generate model created with help of Object
Detection API.
--tensorboard_logdir TENSORBOARD_LOGDIR
TensorFlow*: dump the input graph to a given directory
that should be used with TensorBoard.
--tensorflow_custom_layer_libraries TENSORFLOW_CUSTOM_LAYER_LIBRARIES
TensorFlow*: comma separated list of shared libraries
with TensorFlow* custom operations implementation.
--disable_nhwc_to_nchw
Disables default translation from NHWC to NCHW
NOTE: Models produces with TensorFlow* usually have not fully defined shapes (contain
-1in some dimensions). It is necessary to pass explicit shape for the input using command line parameter--input_shapeor-bto override just batch dimension. If the shape is fully defined, then there is no need to specify either-bor--input_shapeoptions.
Command-Line Interface (CLI) Examples Using TensorFlow*-Specific Parameters
- Launching the Model Optimizer for Inception V1 frozen model when model file is a plain text protobuf:
python3 mo_tf.py --input_model inception_v1.pbtxt --input_model_is_text -b 1
- Launching the Model Optimizer for Inception V1 frozen model and update custom sub-graph replacement file
transform.jsonwith information about input and output nodes of the matched sub-graph. For more information about this feature, refer to Sub-Graph Replacement in the Model Optimizer.
python3 mo_tf.py --input_model inception_v1.pb -b 1 --tensorflow_custom_operations_config_update transform.json
- Launching the Model Optimizer for Inception V1 frozen model and use custom sub-graph replacement file
transform.jsonfor model conversion. For more information about this feature, refer to Sub-Graph Replacement in the Model Optimizer.
python3 mo_tf.py --input_model inception_v1.pb -b 1 --transformations_config transform.json
- Launching the Model Optimizer for Inception V1 frozen model and dump information about the graph to TensorBoard log dir
/tmp/log_dir
python3 mo_tf.py --input_model inception_v1.pb -b 1 --tensorboard_logdir /tmp/log_dir
- Launching the Model Optimizer for a model with custom TensorFlow operations (refer to the TensorFlow* documentation) implemented in C++ and compiled into the shared library
my_custom_op.so. Model Optimizer falls back to TensorFlow to infer output shape of operations implemented in the library if a custom TensorFlow operation library is provided. If it is not provided, a custom operation with an inference function is needed. For more information about custom operations, refer to the Extending the Model Optimizer with New Primitives.
python3 mo_tf.py --input_model custom_model.pb --tensorflow_custom_layer_libraries ./my_custom_op.so
Convert TensorFlow* 2 Models
In order to convert TensorFlow 2 models, installation of dependencies from requirements_tf2.txt is required.
TensorFlow 2.X officially supports two model formats: SavedModel and Keras H5 (or HDF5).
Below are the instructions on how to convert each of them.
SavedModel Format
A model in the SavedModel format consists of a directory with a saved_model.pb file and two subfolders: variables and assets.
To convert such a model:
1. Go to the <INSTALL_DIR>/deployment_tools/model_optimizer directory.
2. Run the mo_tf.py script with a path to the SavedModel directory:
python3 mo_tf.py --saved_model_dir <SAVED_MODEL_DIRECTORY>
TensorFlow* 2 SavedModel format strictly requires the 2.x version of TensorFlow installed in the environment for conversion to the Intermediate Representation (IR).
If a model contains operations currently unsupported by OpenVINO™,
prune these operations by explicit specification of input nodes using the --input or --output
options. To determine custom input nodes, visualize a model graph in the TensorBoard.
To generate TensorBoard logs of the graph, use the Model Optimizer --tensorboard_logs command-line
option.
TensorFlow* 2 SavedModel format has a specific graph structure due to eager execution. In case of
pruning, find custom input nodes in the StatefulPartitionedCall/* subgraph.
Keras H5
If you have a model in the HDF5 format, load the model using TensorFlow* 2 and serialize it in the SavedModel format. Here is an example of how to do it:
import tensorflow as tf
model = tf.keras.models.load_model('model.h5')
tf.saved_model.save(model,'model')
The Keras H5 model with a custom layer has specifics to be converted into SavedModel format.
For example, the model with a custom layer CustomLayer from custom_layer.py is converted as follows:
import tensorflow as tf
from custom_layer import CustomLayer
model = tf.keras.models.load_model('model.h5', custom_objects={'CustomLayer': CustomLayer})
tf.saved_model.save(model,'model')
Then follow the above instructions for the SavedModel format.
NOTE: Do not use other hacks to resave TensorFlow 2 models into TensorFlow 1 formats.
Custom Layer Definition
Internally, when you run the Model Optimizer, it loads the model, goes through the topology, and tries to find each layer type in a list of known layers. Custom layers are layers that are not included in the list of known layers. If your topology contains any layers that are not in this list of known layers, the Model Optimizer classifies them as custom.
See Custom Layers in the Model Optimizer for information about:
- Model Optimizer internal procedure for working with custom layers
- How to convert a TensorFlow model that has custom layers
- Custom layer implementation details
Supported TensorFlow* and TensorFlow 2 Keras* Layers
Refer to Supported Framework Layers for the list of supported standard layers.
Frequently Asked Questions (FAQ)
The Model Optimizer provides explanatory messages if it is unable to run to completion due to issues like typographical errors, incorrectly used options, or other issues. The message describes the potential cause of the problem and gives a link to the Model Optimizer FAQ. The FAQ has instructions on how to resolve most issues. The FAQ also includes links to relevant sections in the Model Optimizer Developer Guide to help you understand what went wrong.
Video: Converting a TensorFlow Model
\endhtmlonly
Summary
In this document, you learned:
- Basic information about how the Model Optimizer works with TensorFlow* models
- Which TensorFlow models are supported
- How to freeze a TensorFlow model
- How to convert a trained TensorFlow model using the Model Optimizer with both framework-agnostic and TensorFlow-specific command-line options
