https://github.com/muka/posenet-tflite-convert
https://github.com/muka/posenet-tflite-convert
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/muka/posenet-tflite-convert
- Owner: muka
- License: apache-2.0
- Created: 2020-09-18T17:16:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T06:29:38.000Z (over 4 years ago)
- Last Synced: 2025-02-05T04:49:31.999Z (4 months ago)
- Language: Makefile
- Size: 79.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# posenet on tflite CPU
A setup to test the approach described in https://github.com/google-coral/edgetpu/issues/127
```python
import tflite_runtime.interpreter as tflite
tpu = tflite.load_delegate('libedgetpu.so.1')
posenet = tflite.load_delegate('posenet_decoder.so')
interpreter = tflite.Interpreter('posenet_mobilenet_v1_075_353_481_quant_decoder.tflite'),
experimental_delegates=[tpu, posenet])```
## Usage
1. download edgetpu repo and build bazel image
```sh
make setup
```2. Compile
```sh
make compile
```