The inputs (and outputs) of the Tensorflow implementation on Espruino are just flat arrays... So you want the result of print(input); to look like:
print(input);
[ -0.9..., 0.52..., ... ... ]
then it should work
It works, thank you very much!
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
The inputs (and outputs) of the Tensorflow implementation on Espruino are just flat arrays... So you want the result of
print(input);
to look like:then it should work