Index
Converters API
The converters
module provides classes to convert and export models to various inference engine foramts. For example, you can convert a Keras model to a TensorFlow Lite model using TfLiteKerasConverter.
While Keras
and TensorFlow
provide built-in methods to export they often have inconsistencies and require additional steps to convert between formats. The converters
module provides a consistent interface to convert and export to various formats.
Available Converters
- C++ Converter: Convert models to C++ executables.
- TFLite Converter: Convert models to TensorFlow Lite format.
- Torch Converter: Convert models to PyTorch formats such as ExecuTorch.