Skip to content

prepkg/tensorflow-lite-raspberrypi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tensorflow-lite-raspberrypi

GitHub Release License Downloads

⚠️ LiteRT replaces TensorFlow Lite. There are no plans to publish LiteRT packages, and this repository will be removed in the future.

TensorFlow Lite binaries are compiled with the GCC Toolchain targeting older glibc versions, ensuring compatibility across a wide range of Raspberry Pi boards running Raspberry Pi OS 64-bit.

Why?

  • No official TensorFlow Lite packages. There are no prebuilt official TensorFlow Lite packages for Raspberry Pi OS, forcing users to compile it from source themselves.
  • Slow compilation on Raspberry Pi. Building TensorFlow Lite directly on a Raspberry Pi can take hours and often runs into the limited RAM available on the device.
  • No extra dependencies. The required libraries are statically linked, so the TensorFlow Lite binaries only depend on the base system libraries already present on Raspberry Pi OS.

Build Information

  • Dynamically linked with an older glibc version. For details, see the GCC Toolchain.
  • Statically linked with libstdc++, and libgcc.

Precompiled Binaries

If you prefer not to build the TensorFlow Lite yourself, a precompiled TensorFlow Lite can be downloaded from the releases page.

curl -sSLo tensorflow-lite.deb https://github.com/prepkg/tensorflow-lite-raspberrypi/releases/latest/download/tensorflow-lite-aarch64-linux-gnu.deb \
  && sudo apt install -y ./tensorflow-lite.deb \
  && rm -rf tensorflow-lite.deb

Compilation

Requirements

  • Git
  • Docker

Instructions

  • Clone the repository:
git clone https://github.com/prepkg/tensorflow-lite-raspberrypi.git && cd tensorflow-lite-raspberrypi
  • Build the Docker image:
./setup.sh build-image
  • Build the library:
./setup.sh build-lib

After compilation, the deb package will be available in the build directory.

  • (Optional) Run the test to verify that the library links correctly and the resulting binary runs under QEMU:
./setup.sh test-lib

About

Precompiled TensorFlow Lite binaries for Raspberry.

Topics

Resources

License

Stars

40 stars

Watchers

3 watching

Forks

Packages

 
 
 

Contributors