MCU嵌入式AI开发笔记
实际编译运行tensorflow Lite Microcontroller的例子《MCU嵌入式AI开发笔记》(第8集)。抖音、B站、视频号等站点搜索柔贝特三哥,《MCU嵌入式AI开发笔记》视频同步更新,视频详细讲解。
编译运行tflite-micro hello word
文章网址:
https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples/hello_world
我们在安装好的idle中打开evaluate.py,并run module
提示no matplotlib,
我们安装一下matplotlib
之后在运行module,提示no tflite_micro
这应该是我们没有安装tflite micro的缘故,也就是安装完成tensorflow 之后,还要安装tflite才行。
我们无法安装这个runtime的运行支持包。
我们tensorflow lite指南中
https://tensorflow.google.cn/lite/guide/python?hl=sv
看到:
也就是说window已经不支持了。
这个时候我们可以考虑docker也就是容器,
https://tensorflow.google.cn/install/?hl=sv
在tensorflow安装一集中我们有看到docker
这个docker是已经配置好的,所以应该可以直接用。
那我们下集学习docker: