Skip to main content
Edge Impulse is the easiest way to build new edge AI models for Qualcomm Dragonwing devices. It’s an end-to-end platform that helps you build datasets, train models, and run models with full hardware acceleration. It supports building AI models using audio, image and other sensor data - or bringing your own model in a variety of formats.

Train an AI model

To start building with Edge Impulse:
  1. Make sure you’ve followed the device setup for your development board.
  2. Sign up for a free developer account at studio.edgeimpulse.com.
  3. From the terminal or ssh session on your development board, install Node.js 22 from the Nodesource PPA:
    If you run these commands from a non-interactive SSH command or a shell that does not load ~/.bash_profile, export the path in the current shell too: export PATH="$PATH:$HOME/.npm-global/bin".
  4. Then, install Edge Impulse for Linux, and connect your development board to Edge Impulse:

    Qualcomm Dragonwing development board connected to Edge Impulse

  5. Follow one of the end-to-end tutorials to build your first AI model.
Tip: Use the target selector on the top right corner to select your Qualcomm Dragonwing development board, and get accurate performance information.
  1. To run your model, from the terminal or ssh session on your development board:
    This will automatically build and download your model, and run it on the NPU (quantized models only). Or, to manually download the EIM file, search for “Linux (AARCH64 with Qualcomm QNN)” in the Deployment page in your Edge Impulse project.

    An object tracking model running on the NPU of a Qualcomm Dragonwing development board

Bring Your Own Model

Edge Impulse also lets you bring your own model (BYOM) in SavedModel, ONNX, TFLite, LiteRT or scikit-learn format. Models deployed through BYOM are fully supported on Dragonwing platforms, NPU acceleration (for quantized models). See Edge Impulse docs > Bring Your Own Model.

Building C++ applications that run on NPU

To build C++ applications with Edge Impulse models that use the NPU on your Dragonwing development board, first install the AI Runtime SDK - Community Edition by opening a terminal on your development board and running:
Afterwards, just follow the steps in edgeimpulse/example-standalone-inferencing-linux under “Qualcomm SoCs with Hexagon NPU” - but skip the manual installation of AI Engine Direct SDK. It’s already configured.

Tips

Seeing NPU performance

Dragonwing platforms have a powerful NPU (neural processing unit) which can drastically speed up AI inference. To see the effect that an NPU has on performance, you can run your model on the CPU via:
E.g. on an example quantized YOLO-based model with 7M parameters on the RB3 Gen 2 Vision Kit the CPU takes 47ms. per inference, and just 2ms. (!) on the NPU.

Troubleshooting

Error: EACCES: permission denied, mkdir ‘/usr/lib/node_modules/edge-impulse-linux’

By default npm install -g edge-impulse-linux tries writing to /usr/lib/node_modules which requires sudo permissions on Ubuntu. The easiest fix is to create a new folder for global packages, and add it to your PATH via: