The TensorFlow Lite builtin op library has grown rapidly, and will continue to grow, but there remains a long tail of TensorFlow ops that are not yet natively supported by TensorFlow Lite . These unsupported ops can be a point of friction in the TensorFlow Lite model conversion process. To that end, the team has recently been working on an experimental mechanism for reducing this friction.
This document outlines how to use TensorFlow Lite with select TensorFlow ops. Note that this feature is experimental and is under active development. As you use this feature, keep in mind the known limitations, and please send feedback about models that work and issues you are facing to tflite@tensorflow.org.
TensorFlow Lite will continue to have TensorFlow Lite builtin ops optimized for mobile and embedded devices. However, TensorFlow Lite models can now use a subset of TensorFlow ops when TFLite builtin ops are not sufficient.
Models converted with TensorFlow ops will require a TensorFlow Lite interpreter that has a larger binary size than the interpreter with only TFLite builtin ops. Additionally, performance optimizations will not be available for any TensorFlow ops in the TensorFlow Lite model.
This document outlines how to convert and run a TFLite model with TensorFlow ops on your platform of choice. It also discusses some known limitations, the future plans for this feature, and basic performance and size metrics.
Converting the model
To convert a TensorFlow model to a TensorFlow Lite model with TensorFlow ops,
use the target_spec.supported_ops argument in the
TensorFlow Lite converter. The following values are valid options
for target_spec.supported_ops:
TFLITE_BUILTINS- Converts models using TensorFlow Lite builtin ops.SELECT_TF_OPS- Converts models using TensorFlow ops. The exact subset of supported ops can be found in the whitelist atlite/delegates/flex/whitelisted_flex_ops.cc.
The recommended approach is to convert the model with TFLITE_BUILTINS, then
with both TFLITE_BUILTINS,SELECT_TF_OPS, and finally with only
SELECT_TF_OPS. Using both options (i.e. TFLITE_BUILTINS,SELECT_TF_OPS)
creates models with TensorFlow Lite ops where possible. Using only
SELECT_TF_OPS is useful when the model contains TensorFlow ops that are only
partially supported by TensorFlow Lite, and one would like to avoid those
limitations.
The following example shows how to use this feature in the
TFLiteConverter Python API.
import tensorflow as tf
converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir)
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS,
tf.lite.OpsSet.SELECT_TF_OPS]
tflite_model = converter.convert()
open("converted_model.tflite", "wb").write(tflite_model)
The following example shows how to use this feature in the
tflite_convert command line tool using the
command line flag target_ops.
tflite_convert \
--output_file=/tmp/foo.tflite \
--graph_def_file=/tmp/foo.pb \
--input_arrays=input \
--output_arrays=MobilenetV1/Predictions/Reshape_1 \
--target_ops=TFLITE_BUILTINS,SELECT_TF_OPS
When building and running tflite_convert directly with bazel, please pass
--define=tflite_convert_with_select_tf_ops=true as an additional argument.
bazel run --define=tflite_convert_with_select_tf_ops=true tflite_convert -- \
--output_file=/tmp/foo.tflite \
--graph_def_file=/tmp/foo.pb \
--input_arrays=input \
--output_arrays=MobilenetV1/Predictions/Reshape_1 \
--target_ops=TFLITE_BUILTINS,SELECT_TF_OPS
Running the model
When using a TensorFlow Lite model that has been converted with support for select TensorFlow ops, the client must also use a TensorFlow Lite runtime that includes the necessary library of TensorFlow ops.
Android AAR
For Android, we recommend using the prebuilt AAR with TensorFlow ops hosted at JCenter.
You can specify this in your build.gradle dependencies by adding it alongside
the standard TensorFlow Lite AAR as follows:
dependencies {
implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly'
// This dependency adds the necessary TF op support.
implementation 'org.tensorflow:tensorflow-lite-select-tf-ops:0.0.0-nightly'
}
Once you've added the dependency, the necessary delegate for handling the graph's TensorFlow ops should be automatically installed for graphs that require them.
Note: The TensorFlow ops dependency is relatively large, so you'll
probably want to filter out unnecessary x86 ABIs in your .gradle file by setting up your abiFilters.
android {
defaultConfig {
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
}
Building the Android AAR
For more advanced cases, you can also build the library manually. Assuming a working TensorFlow Lite build environment, build the Android AAR with select TensorFlow ops as follows:
bazel build --cxxopt='--std=c++11' -c opt \
--config=android_arm --config=monolithic \
//tensorflow/lite/java:tensorflow-lite-select-tf-ops
This will generate an AAR file in bazel-bin/tensorflow/lite/java/. From
there, you can import the AAR directly into your project (see also
these instructions on how to add an AAR directly to your project).
iOS
With XCode Command Line Tools installed, TensorFlow Lite with select TensorFlow ops support can be built with the following command:
tensorflow/contrib/makefile/build_all_ios_with_tflite.sh
This will generate the required static linking libraries in the
tensorflow/contrib/makefile/gen/lib/ directory.
The TensorFlow Lite camera example app can be used to test this. A new
TensorFlow Lite XCode project with support for select TensorFlow ops has been
added to
tensorflow/lite/examples/ios/camera/tflite_camera_example_with_select_tf_ops.xcodeproj.
To use this feature in your own project, either clone the example project or set the project settings for a new or existing project to the following:
- In Build Phases -> Link Binary With Libraries, add the static libraries
under
tensorflow/contrib/makefile/gen/lib/directory:libtensorflow-lite.alibprotobuf.ansync.a
- In Build Settings -> Header Search Paths, add the following directories:
tensorflow/lite/tensorflow/contrib/makefile/downloads/flatbuffer/includetensorflow/contrib/makefile/downloads/eigen
- In Build Settings -> Other Linker Flags, add
-force_load tensorflow/contrib/makefile/gen/lib/libtensorflow-lite.a.
A CocoaPod with support for select TensorFlow ops will also be released in the future.
C++
When building TensorFlow Lite libraries using the bazel pipeline, the additional TensorFlow ops library can be included and enabled as follows:
- Enable monolithic builds if necessary by adding the
--config=monolithicbuild flag. - Add the TensorFlow ops delegate library dependency to the build
dependencies:
tensorflow/lite/delegates/flex:delegate.
Note that the necessary TfLiteDelegate will be installed automatically when
creating the interpreter at runtime as long as the delegate is linked into the
client library. It is not necessary to explicitly install the delegate instance
as is typically required with other delegate types.
Python pip Package
Python support is actively under development.
Metrics
Performance
When using a mixture of both builtin and select TensorFlow ops, all of the same TensorFlow Lite optimizations and optimized builtin kernels will be be available and usable with the converted model.
The following table describes the average time taken to run inference on
MobileNet on a Pixel 2. The listed times are an average of 100 runs. These
targets were built for Android using the flags: --config=android_arm64 -c opt.
| Build | Time (milliseconds) |
|---|---|
Only built-in ops (TFLITE_BUILTIN) |
260.7 |
Using only TF ops (SELECT_TF_OPS) |
264.5 |
Binary Size
The following table describes the binary size of TensorFlow Lite for each build.
These targets were built for Android using --config=android_arm -c opt.
| Build | C++ Binary Size | Android APK Size |
|---|---|---|
| Only built-in ops | 796 KB | 561 KB |
| Built-in ops + TF ops | 23.0 MB | 8.0 MB |
Known Limitations
The following is a list of some of the known limitations:
- Control flow ops are not yet supported.
- The
post_training_quantizationflag is currently not supported for TensorFlow ops so it will not quantize weights for any TensorFlow ops. In models with both TensorFlow Lite builtin ops and TensorFlow ops, the weights for the builtin ops will be quantized. - Ops that require explicit initialization from resources, like HashTableV2, are not yet supported.
- Certain TensorFlow ops may not support the full set of input/output types that are typically available on stock TensorFlow.
Future Plans
The following is a list of improvements to this pipeline that are in progress:
- Selective registration - There is work being done to make it simple to generate TFLite interpreter binaries that only contain the TensorFlow ops required for a particular set of models.
- Improved usability - The conversion process will be simplified to only require a single pass through the converter. Additionally, pre-built Android AAR and iOS CocoaPod binaries will be provided.
- Improved performance - There is work being done to ensure TensorFlow Lite with TensorFlow ops has performance parity to TensorFlow Mobile.