Skip to main content
TensorFlow Lite — now called LiteRT by Google — is the most widely used runtime for embedded and mobile edge AI. Its lightweight tflite-runtime package supports .tflite models on devices such as Raspberry Pi, Coral TPU, and mobile platforms. Models can be verified before creating an interpreter with the secure loader:
The secure_load call verifies the .tflite file’s signature using tuc before passing it to tflite.Interpreter. If the signature check fails, a ModelVerificationError is raised and the model is never loaded.

Requirements