-
Notifications
You must be signed in to change notification settings - Fork 196
Open
Description
On TFLite's Android plugin, Flex delegates can be enabled by adding implementation 'org.tensorflow:tensorflow-lite-select-tf-ops:2.12.0'
to the dependencies
within android/build.gradle
, and by attaching the delegate to the interpreter's options:
final Interpreter.Options options = new Interpreter.Options();
FlexDelegate flexDelegate = new FlexDelegate();
options.addDelegate(flexDelegate);
final interpreter = new Interpreter(buffer, options);
How can we accomplish the same on Flutter?
Thanks in advance!
parnurzeal, CaptainDario, dipendra-sharma, flutter-painter, gianlucasama and 4 more
Metadata
Metadata
Assignees
Labels
No labels