Skip to content

Commit 91317fe

Browse files
committed
init
0 parents  commit 91317fe

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# tensorflow-lite-raspberrypi
2+
3+
![tensorflow-lite-raspberrypi](https://i.ibb.co/T43zRmZ/tensorflow-lite-raspberrypi.png)
4+
5+
Precompiled **TensorFlow Lite 2.5.0** binaries for **Raspberry Pi 3 & 4**.
6+
7+
## Supported features
8+
9+
* NEON optimization
10+
* VFPv4 optimization
11+
* XNNPACK delegate
12+
* Ruy matrix multiplication library
13+
* MMAP-based allocation
14+
* C and C++ APIs
15+
16+
## Prerequisites
17+
18+
### Supported Boards
19+
20+
* Raspberry Pi 3 Model A+
21+
* Raspberry Pi 3 Model B+
22+
* Raspberry Pi 4 Model B
23+
24+
Tested on Raspberry Pi 4 Model B (8 GB).
25+
26+
### Supported OS
27+
28+
* Raspberry Pi OS Buster (32-bit)
29+
30+
## Install
31+
32+
* `wget https://github.com/prepkg/tensorflow-lite-raspberrypi/releases/latest/download/tensorflow-lite.deb`
33+
* `sudo apt install -y ./tensorflow-lite.deb`
34+
35+
## Uninstall
36+
37+
* `sudo apt purge --autoremove -y tensorflow-lite`
38+
39+
## Debian Package
40+
41+
Debian package contains the following shared libraries:
42+
43+
| Library | Description |
44+
| :------------------------- | :--------------------------------------------------------------------- |
45+
| libtensorflowlite_c.so | C API to access TensorFlow Lite interpreter and perform an inference |
46+
| libtensorflow-lite.so | C++ API to access TensorFlow Lite interpreter and perform an inference |
47+
48+
## Reference
49+
50+
1. [TensorFlow Lite repository](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite)

0 commit comments

Comments
 (0)