Can the Arduino Nano Ble 33 Sense microcontroller run 2 machine learning models?

hello everyone, I’m still new to this project.

I have a project that requires making 2 machine learning models on 1 Arduino Nano Ble 33 Sense. What I am asking is whether it is possible to run 2 machine learning models (SVM & Decision Tree) using TensorFlow Lite at the same time?

regards, Jusuf

Hi @JUSUF_JULIANTO ,

Welcome to the TensorFlow Forum .

You Can Create Two Seperate Interpreter Instances for each of your models and use Threading to use them concurrently .

Thank you !