-
Notifications
You must be signed in to change notification settings - Fork 78
Description
I've worked thru the Chapter 07 Zephyr OS project, but found that I can't build zephyr tflist-micro projects.
I have installed the zephyr sdk, zephyr-sdk-0.16.3_macos-aarch64.tar.xz, for my Mac as per the getting started guide: https://docs.zephyrproject.org/latest/develop/getting_started/index.html
and was able to successfully build and run the blinky example.
However, when I try to build the cifar10 project as per page 272:
cd ~/zephyrproject/zephyr/samples/modules/tflite-micro/cifar10
west build -b qemu_cortex_m3 .
I get an error that tensorflow isn't found. Further, when I try to run the tflite-micro hello_world example: https://docs.zephyrproject.org/latest/samples/modules/tflite-micro/hello_world/README.html
I get errors that tensorflow is not found. e.g.:
zephyrproject/zephyr/samples/modules/tflite-micro/hello_world/src/output_handler.hpp:20:10: fatal error: tensorflow/lite/c/common.h: No such file or directory
20 | #include <tensorflow/lite/c/common.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
Has something changed wrt to the zephyr SDK installation since this edition of TinyML-Cookbook was published? I.e. was tensorflow removed from the SDK? Or is this an issue with my being on a Mac?
Many thanks.