Prebuilt TensorFlow Lite runtime binaries for Linux (glibc 2.26+), enabling easy deployment for compatible configurations.
This repository provides precompiled tflite_runtime binaries built from TensorFlow 2.14 sources, allowing you to run TensorFlow Lite 2.14 models in Python on certain environments where official releases are not available.
- Target environment: Amazon Linux 2 container with Python 3.11 installed.
- Python version: 3.11 (matching the AWS Lambda Python 3.11 runtime).
- glibc version: 2.26 (default in Amazon Linux 2)
- Purpose: Enable TensorFlow 2.14 Lite runtime for use in AWS Lambda functions running Python 3.11 on Amazon Linux 2.
import tflite_runtime_2.14_linux_glibc_2.26.interpreter as tflite
...This build was created to fulfill a specific need (running TensorFlow Lite 2.14 on AWS Lambda with Amazon Linux 2 and Python 3.11) and has been tested only in that environment.