Path: blob/master/site/en-snapshot/lite/models/convert/metadata.md
39055 views
Adding metadata to TensorFlow Lite models
TensorFlow Lite metadata provides a standard for model descriptions. The metadata is an important source of knowledge about what the model does and its input / output information. The metadata consists of both
human readable parts which convey the best practice when using the model, and
machine readable parts that can be leveraged by code generators, such as the TensorFlow Lite Android code generator and the Android Studio ML Binding feature.
All image models published on TensorFlow Hub have been populated with metadata.
Model with metadata format
Figure 1. TFLite model with metadata and associated files.Model metadata is defined in metadata_schema.fbs, a FlatBuffer file. As shown in Figure 1, it is stored in the metadata field of the TFLite model schema, under the name, "TFLITE_METADATA". Some models may come with associated files, such as classification label files. These files are concatenated to the end of the original model file as a ZIP using the ZipFile "append" mode ('a' mode). TFLite Interpreter can consume the new file format in the same way as before. See Pack the associated files for more information.
See the instruction below about how to populate, visualize, and read metadata.
Setup the metadata tools
Before adding metadata to your model, you will need to a Python programming environment setup for running TensorFlow. There is a detailed guide on how to set this up here.
After setup the Python programming environment, you will need to install additional tooling:
TensorFlow Lite metadata tooling supports Python 3.
Adding metadata using Flatbuffers Python API
Note: to create metadata for the popular ML tasks supported in TensorFlow Lite Task Library, use the high-level API in the TensorFlow Lite Metadata Writer Library.
There are three parts to the model metadata in the schema:
Model information - Overall description of the model as well as items such as license terms. See ModelMetadata.
Input information - Description of the inputs and pre-processing required such as normalization. See SubGraphMetadata.input_tensor_metadata.
Output information - Description of the output and post-processing required such as mapping to labels. See SubGraphMetadata.output_tensor_metadata.
Since TensorFlow Lite only supports single subgraph at this point, the TensorFlow Lite code generator and the Android Studio ML Binding feature will use ModelMetadata.name and ModelMetadata.description, instead of SubGraphMetadata.name and SubGraphMetadata.description, when displaying metadata and generating code.
Supported Input / Output types
TensorFlow Lite metadata for input and output are not designed with specific model types in mind but rather input and output types. It does not matter what the model functionally does, as long as the input and output types consists of the following or a combination of the following, it is supported by TensorFlow Lite metadata:
Feature - Numbers which are unsigned integers or float32.
Image - Metadata currently supports RGB and greyscale images.
Bounding box - Rectangular shape bounding boxes. The schema supports a variety of numbering schemes.
Pack the associated files
TensorFlow Lite models may come with different associated files. For example, natural language models usually have vocab files that map word pieces to word IDs; classification models may have label files that indicate object categories. Without the associated files (if there are), a model will not function well.
The associated files can now be bundled with the model through the metadata Python library. The new TensorFlow Lite model becomes a zip file that contains both the model and the associated files. It can be unpacked with common zip tools. This new model format keeps using the same file extension, .tflite. It is compatible with existing TFLite framework and Interpreter. See Pack metadata and associated files into the model for more details.
The associated file information can be recorded in the metadata. Depending on the file type and where the file is attached to (i.e. ModelMetadata, SubGraphMetadata, and TensorMetadata), the TensorFlow Lite Android code generator may apply corresponding pre/post processing automatically to the object. See the <Codegen usage> section of each associate file type in the schema for more details.
Normalization and quantization parameters
Normalization is a common data preprocessing technique in machine learning. The goal of normalization is to change the values to a common scale, without distorting differences in the ranges of values.
Model quantization is a technique that allows for reduced precision representations of weights and optionally, activations for both storage and computation.
In terms of preprocessing and post-processing, normalization and quantization are two independent steps. Here are the details.
| Normalization | Quantization | |
|---|---|---|
| \ | Float model: \ | Float model: \ |
| : An example of the : - mean: 127.5 \ : - zeroPoint: 0 \ : | ||
| : parameter values of the : - std: 127.5 \ : - scale: 1.0 \ : | ||
| : input image in : Quant model: \ : Quant model: \ : | ||
| : MobileNet for float and : - mean: 127.5 \ : - zeroPoint: 128.0 \ : | ||
| : quant models, : - std: 127.5 : - scale:0.0078125f \ : | ||
| : respectively. : : : | ||
| \ | \ | Float models does |
| : \ : \ : not need quantization. \ : | ||
| : \ : Inputs: If input : Quantized model may : | ||
| : \ : data is normalized in : or may not need : | ||
| : When to invoke? : training, the input : quantization in pre/post : | ||
| : : data of inference needs : processing. It depends : | ||
| : : to be normalized : on the datatype of : | ||
| : : accordingly. \ : input/output tensors. \ : | ||
| : : Outputs: output : - float tensors: no : | ||
| : : data will not be : quantization in pre/post : | ||
| : : normalized in general. : processing needed. Quant : | ||
| : : : op and dequant op are : | ||
| : : : baked into the model : | ||
| : : : graph. \ : | ||
| : : : - int8/uint8 tensors: : | ||
| : : : need quantization in : | ||
| : : : pre/post processing. : | ||
| \ | \ | Quantize for inputs: |
| : \ : \ : \ : | ||
| : Formula : normalized_input = : q = f / scale + : | ||
| : : (input - mean) / std : zeroPoint \ : | ||
| : : : **Dequantize for : | ||
| : : : outputs**: \ : | ||
| : : : f = (q - zeroPoint) * : | ||
| : : : scale : | ||
| \ | Filled by model creator | Filled automatically by |
| : Where are the : and stored in model : TFLite converter, and : | ||
| : parameters : metadata, as : stored in tflite model : | ||
: : NormalizationOptions : file. : | ||
| How to get the | Through the | Through the TFLite |
: parameters? : MetadataExtractor API : Tensor API [1] or : | ||
| : : [2] : through the : | ||
: : : MetadataExtractor API : | ||
| : : : [2] : | ||
| Do float and quant | Yes, float and quant | No, the float model does |
| : models share the same : models have the same : not need quantization. : | ||
| : value? : Normalization : : | ||
| : : parameters : : | ||
| Does TFLite Code | \ | \ |
| : generator or Android : Yes : Yes : | ||
| : Studio ML binding : : : | ||
| : automatically generate : : : | ||
| : it in data processing? : : : |
[1] The TensorFlow Lite Java API and the TensorFlow Lite C++ API. [2] The metadata extractor library
When processing image data for uint8 models, normalization and quantization are sometimes skipped. It is fine to do so when the pixel values are in the range of [0, 255]. But in general, you should always process the data according to the normalization and quantization parameters when applicable.
TensorFlow Lite Task Library can handle normalization for you if you set up NormalizationOptions in metadata. Quantization and dequantization processing is always encapsulated.
Examples
Note: The export directory specified has to exist before you run the script; it does not get created as part of the process.
You can find examples on how the metadata should be populated for different types of models here:
Image classification
Download the script here , which populates metadata to mobilenet_v1_0.75_160_quantized.tflite. Run the script like this:
To populate metadata for other image classification models, add the model specs like this into the script. The rest of this guide will highlight some of the key sections in the image classification example to illustrate the key elements.
Deep dive into the image classification example
Model information
Metadata starts by creating a new model info:
Input / output information
This section shows you how to describe your model's input and output signature. This metadata may be used by automatic code generators to create pre- and post- processing code. To create input or output information about a tensor:
Image input
Image is a common input type for machine learning. TensorFlow Lite metadata supports information such as colorspace and pre-processing information such as normalization. The dimension of the image does not require manual specification since it is already provided by the shape of the input tensor and can be automatically inferred.
Label output
Label can be mapped to an output tensor via an associated file using TENSOR_AXIS_LABELS.
Create the metadata Flatbuffers
The following code combines the model information with the input and output information:
Pack metadata and associated files into the model
Once the metadata Flatbuffers is created, the metadata and the label file are written into the TFLite file via the populate method:
You can pack as many associated files as you want into the model through load_associated_files. However, it is required to pack at least those files documented in the metadata. In this example, packing the label file is mandatory.
Visualize the metadata
You can use Netron to visualize your metadata, or you can read the metadata from a TensorFlow Lite model into a json format using the MetadataDisplayer:
Android Studio also supports displaying metadata through the Android Studio ML Binding feature.
Metadata versioning
The metadata schema is versioned both by the Semantic versioning number, which tracks the changes of the schema file, and by the Flatbuffers file identification, which indicates the true version compatibility.
The Semantic versioning number
The metadata schema is versioned by the Semantic versioning number, such as MAJOR.MINOR.PATCH. It tracks schema changes according to the rules here. See the history of fields added after version 1.0.0.
The Flatbuffers file identification
Semantic versioning guarantees the compatibility if following the rules, but it does not imply the true incompatibility. When bumping up the MAJOR number, it does not necessarily mean the backward compatibility is broken. Therefore, we use the Flatbuffers file identification, file_identifier, to denote the true compatibility of the metadata schema. The file identifier is exactly 4 characters long. It is fixed to a certain metadata schema and not subject to change by users. If the backward compatibility of the metadata schema has to be broken for some reason, the file_identifier will bump up, for example, from “M001” to “M002”. File_identifier is expected to be changed much less frequently than the metadata_version.
The minimum necessary metadata parser version
The minimum necessary metadata parser version is the minimum version of metadata parser (the Flatbuffers generated code) that can read the metadata Flatbuffers in full. The version is effectively the largest version number among the versions of all the fields populated and the smallest compatible version indicated by the file identifier. The minimum necessary metadata parser version is automatically populated by the MetadataPopulator when the metadata is populated into a TFLite model. See the metadata extractor for more information on how the minimum necessary metadata parser version is used.
Read the metadata from models
The Metadata Extractor library is convenient tool to read the metadata and associated files from a models across different platforms (see the Java version and the C++ version). You can build your own metadata extractor tool in other languages using the Flatbuffers library.
Read the metadata in Java
To use the Metadata Extractor library in your Android app, we recommend using the TensorFlow Lite Metadata AAR hosted at MavenCentral. It contains the MetadataExtractor class, as well as the FlatBuffers Java bindings for the metadata schema and the model schema.
You can specify this in your build.gradle dependencies as follows:
To use nightly snapshots, make sure that you have added Sonatype snapshot repository.
You can initialize a MetadataExtractor object with a ByteBuffer that points to the model:
The ByteBuffer must remain unchanged for the entire lifetime of the MetadataExtractor object. The initialization may fail if the Flatbuffers file identifier of the model metadata does not match that of the metadata parser. See metadata versioning for more information.
With matching file identifiers, the metadata extractor will successfully read metadata generated from all past and future schema due to the Flatbuffers' forwards and backward compatibility mechanism. However, fields from future schemas cannot be extracted by older metadata extractors. The minimum necessary parser version of the metadata indicates the minimum version of metadata parser that can read the metadata Flatbuffers in full. You can use the following method to verify if the minimum necessary parser version condition is met:
Passing in a model without metadata is allowed. However, invoking methods that read from the metadata will cause runtime errors. You can check if a model has metadata by invoking the hasMetadata method:
MetadataExtractor provides convenient functions for you to get the input/output tensors' metadata. For example,
Though the TensorFlow Lite model schema supports multiple subgraphs, the TFLite Interpreter currently only supports a single subgraph. Therefore, MetadataExtractor omits subgraph index as an input argument in its methods.
Read the associated files from models
The TensorFlow Lite model with metadata and associated files is essentially a zip file that can be unpacked with common zip tools to get the associated files. For example, you can unzip mobilenet_v1_0.75_160_quantized and extract the label file in the model as follows:
You can also read associated files through the Metadata Extractor library.
In Java, pass the file name into the MetadataExtractor.getAssociatedFile method:
Similarly, in C++, this can be done with the method, ModelMetadataExtractor::GetAssociatedFile: