-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow the selection of TFLite version when flutter-tflite is downloaded from pub.dev #250
Comments
I also got similar error when I tried to run whisper. How do you change |
Hi, Instead clone the latest version of Then within your own app change the line for
to
|
I am facing same issue |
do the same for IOS tflite_version = '2.17.0' |
Trying to run a model on an Android device using flutter-tflite 0.11.0 and getting the following error.
Didn't find op for builtin opcode 'LOG' version '2'. An older version of this builtin might be supported. Are you using an old TFLite binary with a newer model?
Changing line 64 in flutter-tflite/android/build.gradle
from
def tflite_version = "2.11.0"
to
def tflite_version = "2.16.1"
fixes the issue.
In the following related issue #73 people have problems with newer version of TFLIte. To accommodate everyone, would it be possible to make the TFLite version configurable when plugin is downloaded from pub.dev?
The text was updated successfully, but these errors were encountered: