cancel
Showing results for 
Search instead for 
Did you mean: 

How can I perform real time predictions on MCU (NucleoL496ZG-P) based on my classificator keras model?

NŠlju.1
Associate II

Hello, I am new to deployment of neural networks on mcu's. I am doing a speech enhancment project and want to deploy my noise classificator on my nucleo L496ZGP board. I have 0 exprience with this, how can I do tests on my custom data and (prefferebly) classify recorded sounds in real time in xcube-ai?

1 ACCEPTED SOLUTION

Accepted Solutions
Laurent FOLLIOT
ST Employee

Hello,

You could also use the ST model zoo : https://github.com/STMicroelectronics/stm32ai-modelzoo/tree/main/audio_event_detection

We provided an example to train, evaluate and deploy an AED model on U585 device (not L496 device but this may be of interest anyway).

Regards


In order to give better visibility on the answered topics, please click on 'Accept as Solution' on the reply which solved your issue or answered your question.

View solution in original post

3 REPLIES 3
fauvarque.daniel
ST Employee

A first step is to look at the examples in the embedded documentation, in STM32CubeMX once you have a project with X-Cube-AI added just do Help->X-Cube-AI Documentation to access the documentation.

In STM32CubeMX you can also generate a template application that will give you an example on how to use the API, just select Application Template as the additional component of the pack.

The template code is generated under app_x-cube-ai.c

Regards


In order to give better visibility on the answered topics, please click on 'Accept as Solution' on the reply which solved your issue or answered your question.
Laurent FOLLIOT
ST Employee

Hello,

You could also use the ST model zoo : https://github.com/STMicroelectronics/stm32ai-modelzoo/tree/main/audio_event_detection

We provided an example to train, evaluate and deploy an AED model on U585 device (not L496 device but this may be of interest anyway).

Regards


In order to give better visibility on the answered topics, please click on 'Accept as Solution' on the reply which solved your issue or answered your question.

Thank you!