Tensorflow Lite Texas Instruments C200

Has anyone any experience with using Tensorflow (Lite) with a microprocessor from the C2000 family provided by Texas Instruments? It seems like there’s no official support for it, but maybe someone has further investigated the compatibility before. Thanks!

1 Like

C2000 family from Texas are 32 bit micro controllers and have C++ support which is the tested config for deployment in microcontrollers. So, The procedure applied for other tested micro controllers can be referred for deploying in C2000 family based micro controllers too.Please refer to the workflow.

The normal procedure is to convert the original model to lite and convert it to a character buffer using xxd converter, which can be further imported using C2000 IDE (i.e. Integrated Development Environment).

You can refer the C++ documentation to draft your own use case from here. Thank you!