- Improved error reporting for
PipelinedModelRunner
. It now prints error messages originating from the TensorFlow Lite runtime.
Changed APIs (code-breaking):
-
PipelinedModelRunner.push()
now requires a dictionary for theinput_tensors
(instead of a list), so that each input tensor provides a corresponding tensor name as the dictionary key. This method is also now void instead of returning a bool; it will raiseRuntimeError
if the push fails. -
Similarly,
PipelinedModelRunner.pop()
now returns a dictionary instead of a list, and also may raiseRuntimeError
.
Updated APIs:
make_interpreter()
now accepts an optionaldelegate
argument to specify the Edge TPU delegate object you want to use.get_objects()
now supports SSD models with different orders in the output tensor.
New APIs:
utils.edgetpu.set_verbosity()
prints logs related to each Edge TPU.
- Initial pycoral release