Integrating with Your Existing Python Code
TensorFlow Lite runs models on the device’s CPU (Central Processing Unit) by default. A “Delegate” is a mechanism that “delegates” some or all of the computations in your TFLite model to more specialized hardware instead of the CPU. To use these specialized hardware components (such as the image processing accelerators found in the T3 Gemstone O1 Development Board), you need to load the required shared library file (.so, .dll, etc.).Python

