flutter-tflite icon indicating copy to clipboard operation
flutter-tflite copied to clipboard

Issue with TensorflowLite Interpreter in IOS release build

Open shaheer20 opened this issue 1 year ago • 13 comments

I am passing the tflite file to the interpreter but it returns nothing. This is only happening when I download the IOS build from a test flight. Running an app with IDE works fine.

tfl.Interpreter? interpreter = await tfl.Interpreter.fromAsset('assets/config/mobilefacenet.tflite');

I have also tried

tfl.Interpreter.fromFile(File(path));

But this also doesn't return anything.

How I am testing: I have added a stack view with a Text widget on that and added logs into a string and print the text to check which line is executed. I am not getting any error even if I add this interpreter into try-catch. I have added a text before assigning the value to the interpreter and after the value is assigned to the interpreter only the before-added text shows not after one. This is why I am assuming it got stuck while assigning and didn't return anything.

shaheer20 avatar Jun 20 '23 18:06 shaheer20