tflite-support
tflite-support copied to clipboard
TFLite Support is a toolkit that helps users to develop ML and deploy TFLite models onto mobile / ioT devices.
I used the PT file trained by yolov5, converted it to tflite file, and ran it with the official android code. An error was reported `java.lang.IllegalStateException: Error occurred when initializing...
I am inferencing a float model which has input size of 1x480x640x3 and output size of 1x480x640x3, I am building the AAR in the mediapipe gogole for inferencing and using...
## TLDR: on iOS, when calling classify (a.k.a `let results = try classifier.classify(audioTensor: inputAudioTensor)`) on a model created using [“TensorFlow Lite Model Maker”](https://www.tensorflow.org/lite/models/modify/model_maker/audio_classification), then `results.classifications[1].categories` is always empty (in my...
The link for codegen was directing to this page "https://www.tensorflow.org/lite/guide/codegen " so I updated the broken link with the correct one. Thank you!
**Could you please help me understand the reason behind the discontinuation of nightly releases for the TensorFlowLiteTaskAudio pod after 2022-11-18?** I'm curious to know if the TensorFlowLiteTaskAudio pod has been...
when upgrading from v0.4.3 to v0.4.4, my code now gets stuck when trying to classify. I get no logs about this. ``` classification_options = processor.ClassificationOptions(max_results=1, score_threshold=0) base_options = core.BaseOptions(file_name='model.tflite', use_coral=False,...
[v0.2.0](https://github.com/tensorflow/tflite-support/releases/tag/v0.2.0) introduced support for YUV `android.media.Image` as part of the `tensorflow-lite-task-vision` artifact. Seems like it uses [`libyuv`](https://chromium.googlesource.com/libyuv/libyuv/) under the hood. As far as I understand `TensorImage` delegates to `MediaImageContainer` in...
Quick typo fixes. Main one is in a referenced function, create_input_tesnor_metadata. Looks as though there is only one reference in the project.
When using numpy in python, the ordering of array elements in memory is handled under the hood and usually the user never has to worry about this. For instance, when...