Hello,
I'm implementing different machine learning models on Arduino Nano 33 BLE Sense and i wanted to have RAM Usage details. I have already tried
https://os.mbed.com/blog/entry/Tracking-memory-usage-with-Mbed-OS/
which gives heap and stack status... but the values are identical for all the ML models. (Since the code is same for local global variables, running threads etc).
I wanted to check the RAM Usage while making inferencing (decision making) so the RAM Usage wouldn't be same for all the models since they are quite different in their complexities.
Please suggest some wayout!