Any tutorial for deploying tensorflow lite on embedded mcu using C?

Seems most of the tinyML deployment base on C++
but i want the use as C
any suggestion?

Hi @uveuvenouve,
You can use TensorFlow Lite Micro which is a lightweight runtime designed for microcontrollers specifically and uses C for deployment (Ref). C APIs are also available for machine learning tasks from CMSIS-NN embedded library from Armfor inferencing on embedded mcu using C(Ref).

Thank You