Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 google corral usb 加速器很感兴趣,因为我查了一个项目,它说它支持 CNN 模型,但它包括一维 CNN 模型吗?
这在技术上是可能的。TFLite(以及扩展的 EdgeTPU)不直接支持 Conv1D。但如果你用 Conv1D 编译模型,TFLite 编译器会将其更改为 Reshape->Conv2D->Reshape。因为这些操作都是在 EdgeTPU 上加速的,所以您将能够运行 Conv1D 而不会显着影响性能。