Edge AI

Ask questions and find answers on how to deploy, debug, and optimize AI models on ST microcontrollers, microprocessors, and smart sensors.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

X-CUBE-AI - Middlewares Folder is not Generated

Hello,I am creating a new project on an STM32F4 nucleo board. I configured the X-CUBE-AI library as shown below and specified a TFLite model:When generating code on a fresh project, the "Middlewares" folder is not generated. The project fails to buil...

kahuna_0-1758122433978.png
kahuna by Associate II
  • 546 Views
  • 4 replies
  • 1 kudos

Resolved! Face Recognition MCU Selection

Hello,I have been conducting research for a while for a new project initiation. The project aims to design a smart access control system for 500 users using STM32. In designing this, we are implementing face recognition with FP_AI_FACEREC in the STM3...

Sharing my repo - Multi-Model Face Recognition Pipeline on STM32N6

 I've implemented a multi-model face recognition system on the STM32N6 (originally based on the single model object detection demo) that efficiently runs detection and recognition models simultaneously on the NPU. Sharing the complete implementation ...

PeleAB by Associate II
  • 693 Views
  • 2 replies
  • 3 kudos

Resolved! Support for LayerNormalization in STM32Cube.AI

Hi everyone,I’m trying to deploy a wav2vec model using STM32Cube.AI and ran into an issue during onnx conversion.NOT IMPLEMENTED: Unsupported layer types: LayerNormalizationI’ve read the documentation at supported onnx operators and it seems that Lay...

M_Benz by Associate
  • 170 Views
  • 1 replies
  • 1 kudos

Resolved! stedgeai and "s16 x s8" TFlite models

Hi,I have got a TFlite model with s16 activations and s8 weights.1. Without NPU. I run this commandstedgeai.exe generate --target stm32n6 --name network -m %1 --compression none --verbosity 1 -O time --output ./X-CUBE-AIand the utility produces a ne...

ERROR by Senior
  • 647 Views
  • 2 replies
  • 2 kudos

Inferencing image files from PC on STM32N6570-DK target

Hey,I have created a simple computer vision NN model and successfully deployed it on my STM32N6570-DK (original and quantized in the zip file).I want to "push" image files (to "emulate" the camera) from my computer to the board to run inference of th...

pmiracle by Associate II
  • 513 Views
  • 5 replies
  • 0 kudos

Issues converting YOLOv8 ONNX model to uint8 .nb for STM32MP25

 Hi everyone,I’m currently working on deploying a YOLOv8 model on the STM32MP25 using ST Edge AI. Here’s what I’ve done so far and where I’m stuck.Training & Export:from ultralytics import YOLO model = YOLO("yolov8n.pt") # medium variant  model.train...