如何将keras模型加载到Raspberry Pi上

问题描述 投票:0回答:1

我找不到如何使用我在PC上训练的keras模型加载到我的Raspberry Pi 3上。

如何将它从PC移到Raspberry Pi?

tensorflow keras raspberry-pi3 h5py
1个回答
0
投票

自从v1.9以来,Tensorflow正式支持Raspberry Pi。

只是:

sudo apt install libatlas-base-dev
pip3 install tensorflow

然后你可以将你的python代码和.h5模型一起上传到设备来运行。

© www.soinside.com 2019 - 2024. All rights reserved.