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
I get this error message I get when I basically replicate the gesture recognition tutorial in Arduino ML guide.
More importantly, though the arduino sketch builds, the model doesn't appear to be working, since the serial output doesn't report any gestures.
The workaround that worked for me was to change the header in the model.h encoding in the Google Colab ML notebook:
Original: !echo "const unsigned char model[] = {"
What worked for me: !echo "alignas(8)const unsigned char model[] = {"
The addition of alignas(8) fixed the issue in that the arduino sketch build is now working, and I am able to classify gestures.
The text was updated successfully, but these errors were encountered:
Hi @gmram, would you mind to submit a PR with your fix?
Could you, please, try with the __attribute__((aligned(8))) syntax and base your PR on this (take a look at #24)?
__attribute__((aligned(8)))
Many thanks!
Sorry, something went wrong.
No branches or pull requests
I get this error message I get when I basically replicate the gesture recognition tutorial in Arduino ML guide.
More importantly, though the arduino sketch builds, the model doesn't appear to be working, since the serial output doesn't report any gestures.
The workaround that worked for me was to change the header in the model.h encoding in the Google Colab ML notebook:
Original: !echo "const unsigned char model[] = {"
What worked for me: !echo "alignas(8)const unsigned char model[] = {"
The addition of alignas(8) fixed the issue in that the arduino sketch build is now working, and I am able to classify gestures.
The text was updated successfully, but these errors were encountered: