Open francorobles opened 3 years ago
Do you have the .tflite file under the assets/ folder? Let me know if you still having the issue
same problem here, mobilefacenet.tflite file is still there at assets folder, i have do flutter clean and pub get, but it's still won't work, and also when i try to click sign up when using method _cameraController.takePicture(), its showing error : I/flutter (16275): NoSuchMethodError: The method 'run' was called on null. I/flutter (16275): Receiver: null I/flutter (16275): Tried calling: run(Instance(length:1) of '_GrowableList', Instance(length:1) of '_GrowableList')
@francorobles & @dhimaspp What device are you running it on?
same issue in my project
same problem in my project also
@MCarlomagno any solutions that u know of?
This solution fixed "Failed to load model" when using iOS device.
Step 1 :
Step 2 :
$brew Install bazel
(I'm using version 4.2.2).Step 3:
git clone https://github.com/tensorflow/tensorflow
project and place it into this folder pythonenv
(Created at step 1).Step 4 :
$./configure
to run the script. Press enter to use default answer and answer Yes
when the script asks if you wish to build TensorFlow with iOS support.Step 5 :
bazel build --config=ios_arm64 -c opt //tensorflow/lite/ios:TensorFlowLiteC_framework
& bazel build --config=ios_arm64 -c opt //tensorflow/lite/ios:TensorFlowLiteCMetal_framework
. TensorFlowLiteCMetal_framework.zip
& TensorFlowLiteC_framework.zip
inside this location user/pythonenv/tensorflow/bazel-bin
. Step 6 :
user/flutter/.pub-cache/hosted/pub.dartlang.org/tflite_flutter-0.9.0/ios
(Make sure you use Command+Shift+Dot to show invisible folder). Step 7 :
tflite_flutter.podspec
(This file is in the same location)Step 8 :
s.ios.vendored_frameworks = 'TensorFlowLiteC.framework', 'TensorFlowLiteCMetal.framework
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework TensorFlowLiteC -all_load -framework TensorFlowLiteCMetal -all_load' }
Step 9 :
flutter clean && flutter pub get && cd ios && pod install && flutter run
Same error also, any solutions
I/flutter (12759): Failed to load model. I/flutter (12759): Invalid argument(s): Failed to lookup symbol (undefined symbol: TfLiteGpuDelegateV2Create)