diff --git a/onert-micro/examples/README.md b/onert-micro/examples/README.md new file mode 100644 index 00000000000..97e93cf20fc --- /dev/null +++ b/onert-micro/examples/README.md @@ -0,0 +1,6 @@ +## How to build an example +- Build ONE toolchain +- Convert your tflite model to circle using tflite2circle from toolchain + e.g. `./tflite2circle ./speech_recognition_float.tflite ./speech_recognition_float.circle` +- Convert model to C array: `xxd -i ./speech_recognition_float.circle ./speech_recognition_float.h` +- Include C array with model to your project diff --git a/onert-micro/examples/models/speech_recognition/speech_recognition_float.tflite b/onert-micro/examples/models/speech_recognition/speech_recognition_float.tflite new file mode 100644 index 00000000000..4245e2c09ed Binary files /dev/null and b/onert-micro/examples/models/speech_recognition/speech_recognition_float.tflite differ