/posenet-tflite-convert

Primary LanguageMakefileApache License 2.0Apache-2.0

posenet on tflite CPU

A setup to test the approach described in google-coral/edgetpu#127

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
make setup
  1. Compile
make compile