We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I upload the IMU_Classifier to the Arduino nano 33 sense BLE I obtain this error:
error: 'AllOpsResolver' in namespace 'tflite::ops::micro' does not name a type tflite::ops::micro::AllOpsResolver tflOpsResolver;
I have the Arduino_Tensorflowlite library 2.1.0-Alpha precompiled installed..
The text was updated successfully, but these errors were encountered:
It looks like the namespace for AllOpsResolver has changed. (See: tensorflow/tensorflow@e5dfc3b#diff-bef9994836e47ef462fa74510aa8ae34)
Try changing line 43 of IMU_Classifier to:
tflite::AllOpsResolver tflOpsResolver;
(i.e. delete 'ops::micro::')
ops::micro::
Sorry, something went wrong.
Fix data type for tflOpsResolver
efa2548
Fix data type for tflOpsResolver per issue arduino#16
No branches or pull requests
When I upload the IMU_Classifier to the Arduino nano 33 sense BLE I obtain this error:
error: 'AllOpsResolver' in namespace 'tflite::ops::micro' does not name a type tflite::ops::micro::AllOpsResolver tflOpsResolver;
I have the Arduino_Tensorflowlite library 2.1.0-Alpha precompiled installed..
The text was updated successfully, but these errors were encountered: