Troubleshooting Tensorflow Lite in Bangle #2926
Replies: 15 comments
-
Posted at 2021-06-17 by @gfwilliams I haven't come across this before, but it seems like it might be related to how the model is being created? Maybe you could post up the code used to make it? It seems like there are tools to convert TF models to new schemas (https://android.googlesource.com/platform/external/tensorflow/+/2db2230841e851e80374b6c5d9e6d9d7f35e0384/tensorflow/contrib/lite/schema/upgrade_schema.py) but I'm not sure why yours would be using schema 0 - could your Tensorflow version be an old one? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-17 by user130273 Hi @gfwilliams, thank you for your reply. I've tried the tool that you recommended but I couldn't make it work, it keeps giving errors (also screenshot attached). I'd appreciate any help. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-18 by @gfwilliams I don't see the code for actually exporting the model there? It seems that after you've got
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-18 by user130273 I managed to load it to the Bangle.js, there were two issues:
The problem is now that the model does not seem to take any values as inputs. I trained the model with inputs in shape (1, 12, 3, 1), so I've prepared the data in the bangle in the same format: the input for one prediction is of shape (1, 12, 3, 1) that is, an array of arrays. Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-21 by @gfwilliams The inputs (and outputs) of the Tensorflow implementation on Espruino are just flat arrays... So you want the result of
then it should work |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-21 by user130273 It works, thank you very much! |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-07 by ThomasVikström Hi @user130273, would you be willing to share your code? I've been able to collect data and train a model using Edge Impulse (if interested, see this tutorial I wrote). This is however using the Bangle gesture commands, but now I'd like to learn how to use raw accelerometer and other data. Edit: Aargh, it should be something in line with the below code that I've seen many times... Still interested to see your code though.
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-07 by ThomasVikström Hmm, the below code is copied from here and just slightly appended. When running it, Bangle restarts itself, when Edit 1: While the code resets the physical watch, it runs fine in the emulator, both for Bangle 1 and 2
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-07 by ThomasVikström Ok, updated from a 2 week old firmware (2v10.something) to the latest 2v10.107. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-08 by user130273 Hello @ThomasVikström !
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-08 by ThomasVikström Thx for the comments! @gfwilliams I guess you are superbusy with the Kickstarter campaign right now. When you get time, could you please shed some light on how to use a |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-12 by @gfwilliams Hi - I think you can just load it from storage and use it as-is, like this?
Please let me know if you have issues though... |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-12 by ThomasVikström
Hi - Thx, this makes sense now once I saw it, am new to JS! However, it produces the below error. I've uploaded the same tfmodel file used with the gesture functions to the watch and named it
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-12 by @gfwilliams Ahh, sorry, I just corrected the code above - please can you try:
What happens is You just need to force Espruino to load the file into RAM, which you can do with |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-10-12 by ThomasVikström Makes sense, at least it does not crash now, instead gives me a value. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2021-06-16 by user130273
I have created a Tensorflow model that expects a (1, 12, 3) sample as input. I converted it to Tensorflow Lite and print the declaration as in the example provided in a tutorial in this forum:
print("var model=atob(""+str(base64.b64encode(model_no_quant_tflite))+"");")
I'm using quantization because it wasn't reducing any further the size, the size of the model I'm using is 4356 bytes .
Here the problem, the command "var tf = require("tensorflow").create(2048, model);" keeps giving an error "Uncaught Error: Model provided is schema version 0 not equal to supported version 3." when I try to load it to the Emulator (loading to the watch also fails, it even disconnects the Bluetooth half loading and the loading fails).
Do you know what could be the cause of the error?
Thank you very much.
Attachments:
Beta Was this translation helpful? Give feedback.
All reactions