This change moves //tensorflow/contrib/lite to //tensorflow/lite in preparation for TensorFlow 2.0's deprecation of contrib/. If you refer to TF Lite build targets or headers, you will need to update them manually. If you use TF Lite from the TensorFlow python package, "tf.contrib.lite" now points to "tf.lite". Please update your imports as soon as possible. For more details, see https://groups.google.com/a/tensorflow.org/forum/#!topic/tflite/iIIXOTOFvwQ @angersson and @aselle are conducting this migration. Please contact them if you have any further questions. PiperOrigin-RevId: 219536476
10 lines
444 B
Plaintext
10 lines
444 B
Plaintext
The binary frontend_main shows sample usage of the frontend, printing out
|
|
coefficients when it has processed enough data.
|
|
|
|
The binary frontend_memmap_main shows a sample usage of how to avoid all the
|
|
init code in your runtime, by first running "frontend_generate_memmap" to
|
|
create a header/source file that uses a baked in frontend state. This command
|
|
could be automated as part of your build process, or you can just use the output
|
|
directly.
|
|
|