Tensorflow Onnx
Convert TensorFlow, Keras, Tensorflow.js and Tflite models to ONNX
Install / Use
npx skills add onnx/tensorflow-onnxInstalls into whichever agent you are using.
README
tf2onnx - Convert TensorFlow, Keras, Tensorflow.js and Tflite models to ONNX.
tf2onnx converts TensorFlow (tf-2.x), keras, tensorflow.js and tflite models to ONNX via command line or python api.
🛠 Maintainer Wanted
We are currently looking for a new maintainer to help support and evolve the tf2onnx project.
If you're passionate about the ONNX standard or contributing to the open source machine learning ecosystem, we'd love to hear from you! This is a great opportunity to contribute to a widely used project and collaborate with the ONNX community.
To express interest: Please open an issue or comment on this thread and let us know about your interest and background.
Note: tensorflow.js support is experimental. While we tested it with many tfjs models from tfhub, not all models may convert correctly.
TensorFlow has many more ops than ONNX and occasionally mapping a model to ONNX creates issues.
You find a list of supported TensorFlow ops and their mapping to ONNX here.
The common issues we run into we try to document here Troubleshooting Guide.
<br/>| Build Type | OS | Python | TensorFlow | ONNX opset | | --- | - | --- | --- | --- | | Unit Test - Basic | Linux, Windows | 3.10-3.12 | 2.13-2.15 | 14-18 | | Unit Test - Full | Linux, Windows | 3.10-3.12 | 2.13-2.15 | 14-18 | <br/>
Supported Versions
ONNX
tf2onnx will use the ONNX version installed on your system and installs the latest ONNX version if none is found.
We support and test ONNX opset-14 to opset-18. opset-6 to opset-13 should work but we don't test them.
By default we use opset-15 for the resulting ONNX graph.
If you want the graph to be generated with a specific opset, use --opset in the command line, for example --opset 15.
TensorFlow
We support tf-2.x. To keep our test matrix manageable we test tf2onnx running on top of tf-2.13 or better.
Python
We support Python 3.10-3.12.
Prerequisites
Install TensorFlow
If you don't have TensorFlow installed already, install the desired TensorFlow build, for example:
pip install tensorflow
(Optional) Install runtime
If you want to run tests, install a runtime that can run ONNX models. For example:
ONNX Runtime (available for Linux, Windows, and Mac):
pip install onnxruntime
Installation
Install from pypi
pip install -U tf2onnx
Install latest from github
pip install git+https://github.com/onnx/tensorflow-onnx
Build and install latest from source (for development)
git clone https://github.com/onnx/tensorflow-onnx
Once dependencies are installed, from the tensorflow-onnx folder call:
python setup.py install
or
python setup.py develop
tensorflow-onnx requires onnx-1.9 or better and will install/upgrade onnx if needed.
To create a wheel for distribution:
python setup.py bdist_wheel
Getting started
To get started with tensorflow-onnx, run the tf2onnx.convert command, providing:
- the path to your TensorFlow model (where the model is in
saved modelformat) - a name for the ONNX output file:
python -m tf2onnx.convert --saved-model tensorflow-model-path --output model.onnx
The above command uses a default of 15 for the ONNX opset. If you need a newer opset, or want to limit your model to use an older opset then you can provide the --opset argument to the command. If you are unsure about which opset to use, refer to the ONNX operator documentation.
python -m tf2onnx.convert --saved-model tensorflow-model-path --opset 18 --output model.onnx
If your TensorFlow model is in a format other than saved model, then you need to provide the inputs and outputs of the model graph.
For checkpoint format:
python -m tf2onnx.convert --checkpoint tensorflow-model-meta-file-path --output model.onnx --inputs input0:0,input1:0 --outputs output0:0
For graphdef format:
python -m tf2onnx.convert --graphdef tensorflow-model-graphdef-file --output model.onnx --inputs input0:0,input1:0 --outputs output0:0
If your model is in checkpoint or graphdef format and you do not know the input and output nodes of the model, you can use the summarize_graph TensorFlow utility. The summarize_graph tool does need to be downloaded and built from source. If you have the option of going to your model provider and obtaining the model in saved model format, then we recommend doing so.
You find an end-to-end tutorial for ssd-mobilenet here
We recently added support for tflite. You convert tflite models via command line, for example:
python -m tf2onnx.convert --opset 16 --tflite tflite-file --output model.onnx
CLI reference
python -m tf2onnx.convert
--saved-model SOURCE_SAVED_MODEL_PATH |
--checkpoint SOURCE_CHECKPOINT_METAFILE_PATH |
--tflite TFLITE_MODEL_PATH |
--tfjs TFJS_MODEL_PATH |
--input | --graphdef SOURCE_GRAPHDEF_PB
--output TARGET_ONNX_MODEL
[--inputs GRAPH_INPUTS]
[--outputs GRAPH_OUTPUS]
[--inputs-as-nchw inputs_provided_as_nchw]
[--outputs-as-nchw outputs_provided_as_nchw]
[--opset OPSET]
[--dequantize]
[--tag TAG]
[--signature_def SIGNATURE_DEF]
[--concrete_function CONCRETE_FUNCTION]
[--target TARGET]
[--extra_opset list-of-extra-opset]
[--custom-ops list-of-custom-ops]
[--load_op_libraries tensorflow_library_path]
[--large_model]
[--continue_on_error]
[--verbose]
[--output_frozen_graph]
Parameters
--saved-model
TensorFlow model as saved_model. We expect the path to the saved_model directory.
--checkpoint
TensorFlow model as checkpoint. We expect the path to the .meta file.
--input or --graphdef
TensorFlow model as graphdef file.
--tfjs
Convert a tensorflow.js model by providing a path to the .tfjs file. Inputs/outputs do not need to be specified.
--tflite
Convert a tflite model by providing a path to the .tflite file. Inputs/outputs do not need to be specified.
--output
The target onnx file path.
--inputs, --outputs
TensorFlow model's input/output names, which can be found with summarize graph tool. Those names typically end with :0, for example --inputs input0:0,input1:0. Inputs and outputs are not needed for models in saved-model format. Some models specify placeholders with unknown ranks and dims which can not be mapped to onnx. In those cases one can add the shape after the input name inside [], for example --inputs X:0[1,28,28,3]. Use -1 to indicate unknown dimensions.
--inputs-as-nchw
By default we preserve the image format of inputs (nchw or nhwc) as given in the TensorFlow model. If your hosts (for example windows) native format nchw and the model is written for nhwc, --inputs-as-nchw tensorflow-onnx will transpose the input. Doing so is convenient for the application and the converter in many cases can optimize the transpose away. For example --inputs input0:0,input1:0 --inputs-as-nchw input0:0 assumes that images are passed into input0:0 as nchw while the TensorFlow model given uses nhwc.
--outputs-as-nchw
Similar usage with --inputs-as-nchw. By default we preserve the format of outputs (nchw or nhwc) as shown in the TensorFlow model. If your hosts native format nchw and the model is written for nhwc, --outputs-as-nchw tensorflow-onnx will transpose the output and optimize the transpose away. For example --outputs output0:0,output1:0 --outputs-as-nchw output0:0 will change the output0:0 as nchw while the TensorFlow model given uses nhwc.
--ignore_default, --use_default
ONNX requires default values for graph inputs to be constant, while Tensorflow's PlaceholderWithDefault op accepts computed defaults. To convert such models, pass a comma-separated list of node names to the ignore_default and/or use_default flags. PlaceholderWithDefault nodes with matching names will be replaced with Placeholder or Identity ops, respectively.
--opset
By default we use the opset 15 to generate the graph. By specifying --opset the user can override the default to generate a graph with the desired opset. For example --opset 17 would create a onnx graph that uses only ops available in opset 17. Because older opsets have in most cases fewer ops, some models might not convert on an older opset.
--dequantize
(This is experimental, only supported for tflite)
Produces a float32 model from a quantized tflite model. Detects ReLU and ReLU6 ops from quantization bounds.
--tag
Only valid with parameter --saved_model. Specifies the tag in the saved_model to be used. Typical value is 'serve'.
--signature_def
Only valid with parameter --saved_model. Specifies which signature to use within the specified --tag value. Typical value is 'serving_default'.
--concrete_function
(This is experimental, valid only for TF2.x models)
Only valid with parameter --saved_model. If a model contains a list of concrete functions, under the function name __call__ (as can be viewed using the command saved_model_cli show --all), this parameter is a 0-based integer specifying which function in that list should be converted. This parameter takes priority over --signature_def, which will be ignored.
--target
Some models require special handling to run on some runtimes. In particular, the model may use unsupported data types. Workarounds are activated with --target TARGET. Currently supported values are listed on thi
Related Skills
mcp
Use the `mcp_perplexity-ask_perplexity_search` tools to answer questions. You should use this instead of the `web_search` tool because it is a lot more accurate.
practical-power-systems-synthesis
This skill enables synthesis in the domain of power-systems (engineering). It represents research-level-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform synthesis operations related to power-systems.
semi-supervised-optogenetics-testing
This skill enables testing in the domain of optogenetics (neuroscience). It represents intermediate-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform testing operations related to optogenetics.
data-mining-interpretation-fundamental
This skill enables interpretation in the domain of data-mining (data-science). It represents fundamental-level expertise and is designed for production use in research, industry, and educational contexts. Use this skill when you need to perform interpretation operations related to data-mining.
