- class exporter.TFLiteExporter(model)¶
Export an Acuity model into an TFLite application. reference: https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite
- __init__(model)¶
- Parameters:
model – AcuityModel object.
- export(output, **kwargs)¶
Export TFLite application.
- Parameters:
output – The directory of the exported applications with the prefix specified. Use the syntax ‘<output directory>/<prefix>’. Where: Output directory: The directory of the generated outputs including subdirectories and files. Prefix: The prefix of the generated subdirectories and files. For example, “export_tflite/uint8/lenet”
- Returns: