Path: blob/master/site/en-snapshot/lite/inference_with_metadata/codegen.md
25118 views
Generate model interfaces using metadata
Using TensorFlow Lite Metadata, developers can generate wrapper code to enable integration on Android. For most developers, the graphical interface of Android Studio ML Model Binding is the easiest to use. If you require more customisation or are using command line tooling, the TensorFlow Lite Codegen is also available.
Use Android Studio ML Model Binding {:#mlbinding}
For TensorFlow Lite models enhanced with metadata, developers can use Android Studio ML Model Binding to automatically configure settings for the project and generate wrapper classes based on the model metadata. The wrapper code removes the need to interact directly with ByteBuffer
. Instead, developers can interact with the TensorFlow Lite model with typed objects such as Bitmap
and Rect
.
Note: Required Android Studio 4.1 or above
Import a TensorFlow Lite model in Android Studio
Right-click on the module you would like to use the TFLite model or click on
File
, thenNew
>Other
>TensorFlow Lite Model
Select the location of your TFLite file. Note that the tooling will configure the module's dependency on your behalf with ML Model binding and all dependencies automatically inserted into your Android module's
build.gradle
file.Optional: Select the second checkbox for importing TensorFlow GPU if you want to use GPU acceleration.
Click
Finish
.The following screen will appear after the import is successful. To start using the model, select Kotlin or Java, copy and paste the code under the
Sample Code
section. You can get back to this screen by double clicking the TFLite model under theml
directory in Android Studio.
Accelerating model inference {:#acceleration}
ML Model Binding provides a way for developers to accelerate their code through the use of delegates and the number of threads.
Note: The TensorFlow Lite Interpreter must be created on the same thread as when is run. Otherwise, TfLiteGpuDelegate Invoke: GpuDelegate must run on the same thread where it was initialized. may occur.
Step 1. Check the module build.gradle
file that it contains the following dependency:
Step 2. Detect if GPU running on the device is compatible with TensorFlow GPU delegate, if not run the model using multiple CPU threads:
Kotlin
import org.tensorflow.lite.gpu.CompatibilityList import org.tensorflow.lite.gpu.GpuDelegate
Generate model interfaces with TensorFlow Lite code generator {:#codegen}
Note: TensorFlow Lite wrapper code generator currently only supports Android.
For TensorFlow Lite model enhanced with metadata, developers can use the TensorFlow Lite Android wrapper code generator to create platform specific wrapper code. The wrapper code removes the need to interact directly with ByteBuffer
. Instead, developers can interact with the TensorFlow Lite model with typed objects such as Bitmap
and Rect
.
The usefulness of the code generator depend on the completeness of the TensorFlow Lite model's metadata entry. Refer to the <Codegen usage>
section under relevant fields in metadata_schema.fbs, to see how the codegen tool parses each field.
Generate wrapper Code
You will need to install the following tooling in your terminal:
Once completed, the code generator can be used using the following syntax:
The resulting code will be located in the destination directory. If you are using Google Colab or other remote environment, it maybe easier to zip up the result in a zip archive and download it to your Android Studio project:
Using the generated code
Step 1: Import the generated code
Unzip the generated code if necessary into a directory structure. The root of the generated code is assumed to be SRC_ROOT
.
Open the Android Studio project where you would like to use the TensorFlow lite model and import the generated module by: And File -> New -> Import Module -> select SRC_ROOT
Using the above example, the directory and the module imported would be called classify_wrapper
.
Step 2: Update the app's build.gradle
file
In the app module that will be consuming the generated library module:
Under the android section, add the following:
Note: starting from version 4.1 of the Android Gradle plugin, .tflite will be added to the noCompress list by default and the aaptOptions above is not needed anymore.
Under the dependencies section, add the following:
Step 3: Using the model
Accelerating model inference
The generated code provides a way for developers to accelerate their code through the use of delegates and the number of threads. These can be set when initializing the model object as it takes three parameters:
Context
: Context from the Android Activity or Service(Optional)
Device
: TFLite acceleration delegate for example GPUDelegate or NNAPIDelegate(Optional)
numThreads
: Number of threads used to run the model - default is one.
For example, to use a NNAPI delegate and up to three threads, you can initialize the model like this:
Troubleshooting
If you get a 'java.io.FileNotFoundException: This file can not be opened as a file descriptor; it is probably compressed' error, insert the following lines under the android section of the app module that will uses the library module:
Note: starting from version 4.1 of the Android Gradle plugin, .tflite will be added to the noCompress list by default and the aaptOptions above is not needed anymore.