NanoEdge AI Studio

1 What is NanoEdge AI Library?

NanoEdge™ AI Library is an Artificial Intelligence (AI) static library originally developed by Cartesiam, for embedded C software running on Arm® Cortex® microcontrollers (MCUs). It comes in the form of a precompiled .a file that provides building blocks to implement smart features into any C code.

When embedded on microcontrollers, the NanoEdge AI Library gives them the ability to "understand" sensor patterns automatically, by themselves, without the need for the user to have additional skills in Mathematics, Machine Learning, or data science.

Each NanoEdge AI static library contains an AI model (as a bundle of signal preprocessing, Machine Learning model, or optimally tuned hyperparameters) designed bring Machine Learning capabilities to any C code, in the form of easily implementable functions, such as learn, detect, or classify.

There are two different types of NanoEdge AI Libraries:

  • NanoEdge AI Library for anomaly detection: it is used to detect anomalous behaviors on a machine, after an initial in-situ training phase, where only the "nominal" behaviors are learned.
  • NanoEdge AI Library for classification: it is used to distinguish and recognize different types of behaviors, anomalous or not, and classify them into pre-established categories.

Each library, tailored for different goals, has unique features:

Anomaly detection library Classification library
Comes optimized yet untrained Comes optimized and pre-trained
Gathers knowledge incrementally in the MCU Includes static knowledge
Learns dynamically and unsupervised in-situ Does not require any additional learning
Detects anomalies in the MCU Classifies signals in the MCU


Info white.png Information
For more information about their uses and specificities, see their respective documentations:


However all NanoEdge AI Libraries:

  • are ultra optimized to run on MCUs (any Arm® Cortex®-M)
  • are ultra memory efficient (1-20 Kbytes of RAM/Flash memory)
  • are ultra fast (1-20 ms inference on Cortex®-M4 at 80 MHz)
  • run directly within the microcontroller
  • can be integrated into existing code / hardware
  • consume very little energy
  • preserve the stack (static allocation only)
  • are inherently independent from the cloud
  • transmit or save no data
  • require no Machine Learning expertise to be deployed

All NanoEdge AI Libraries are created by using NanoEdge AI Studio.

2 Purpose of NanoEdge AI Studio

2.1 What the Studio can do

NanoEdge AI Libraries contains a range of Machine Learning models, and each of these models can be optimized by tuning a wide range of hyperparameters. This results in a very large number of potential combinations, each one being tailored for a specific use-case (one static libraries for each combination). Therefore, a tool is needed to find the best possible library for each project.

NanoEdge AI Studio (NanoEdgeAIStudio), also called the Studio,

  • is a search engine for AI Libraries
  • is built for embedded developers
  • abstracts away all aspects of Machine Learning and data science
  • enables the quick and easy development of Machine Learning capabilities into any C code

Its purpose is to find the best possible NanoEdge AI static library for a given hardware application, where the only requirements in terms of user knowledge are embedded development (software/hardware), C coding, and basic signal sampling notions.

NanoEdge AI Studio takes as input project parameters (such as MCU type, RAM and sensor type) and some signal examples, and outputs the most relevant NanoEdge AI Library (that then do all the learning in-situ, when embedded).

Each NanoEdge AI static library is the result of the benchmark of virtually all possible AI libraries (combinations of signal treatment, ML model, tuned hyperparameters), tested against the minimal data given by the user. It therefore contains the best possible model, for a given project, given the signal examples provided as input.

2.2 What the Studio cannot do

In a nutshell, NanoEdge AI Studio takes user data as input (in the form of sensor signal examples), and produces a static library (.a) file as output. This is a straightforward and relatively quick procedure.

However, the Studio does not provide any input data. The user needs to have qualified data in order to obtain satisfactory results from the Studio. These data can be raw sensor signals, or pre-treated signals, and need to be formatted properly (see below). For example, for anomaly detection on a machine, the user needs to collect signal examples of "normal" behavior on this machine, as well as a few examples (non-exhaustive) of "anomalies". This data collection process is crucial, and can be tedious, as some expertise is needed to design the correct signal acquisition and sampling methodology, which can vary dramatically from one project to the other.

Additionally, NanoEdge AI Studio does not provide any ready-to-use C code to implement in your final project. This code, which includes some of the NanoEdge AI Library smart functions (such as initialize, learn and detect), needs to be written and compiled by the user. The user is free to call these functions as needed, and implement all the smart features imaginable.

In summary, the static (.a) library file, outputted by the Studio from user-generated input data, must be linked to some C code written by the user, and compiled/flashed by the user on the target microcontroller.

3 Getting started

3.1 Running NanoEdge AI Studio for the first time

When running NanoEdge AI Studio for the first time, you are prompted for:

  • Your proxy settings: if you are using a proxy, use the settings below, otherwise, click NO.
Here are the IP addresses that need to be authorized:
Licensing API: Cartesiam API for library compilation:
54.147.158.222 40.113.111.93
54.147.163.93 -
54.144.124.187 -
54.144.46.201 -
or via URL: https://api.cryptlex.com:443 or via URL: https://apidev.cartesiam.net
  • The port you want to use.
It can be changed to any port available on your machine (port 5000 by default).
  • Your license key.
If you do not know your license key, log in to the Cryptex licensing platform to retrieve it.
If you have lost your login credentials, reset your password using the email address used to download NanoEdge AI Studio.
Info white.png Information
If you do not have an Internet connection, offline activation is available:
  1. Choose Offline activation and enter your license key.
  2. Copy the long string of characters that appears.
  3. Log in to the Cryptex licensing platform.
  4. Reset your password using the email address provided when downloading NanoEdge AI Studio.
  5. Log into your Cryptlex dashboard using your new password.
  6. Click on your license key, then Activations and Offline activation.
  7. Click ACTIVATION, then paste the string of characters copied in step 2, and click Download response.
  8. In NanoEdge AI Studio, click Import file and open the downloaded .dat file.

3.2 Preparing signal files

During the library selection process, NanoEdge AI Studio uses user data (input files containing signal examples) to test and benchmark many Machine Learning models and parameters. The way those input files are structured, formatted, and the way the signal were recorded is therefore very important.

This section is composed of the following sub-sections:

3.2.1 Anomaly detection vs. classification

Here is an overview of the two different approaches:

Anomaly detection Classification (N classes)
Studio purpose
  • finding the best library
  • no knowledge, model is untrained
  • finding the best library and learning some knowledge
  • static knowledge, model is pre-trained
Embedded functions (MCU)
  • learn in-situ, dynamically
  • detect in-situ (inference)
  • no learning in-situ
  • classifier for in-situ classification
Studio steps
  • 2 import steps: Step 2 and Step 3
  • Import Regular and Abnormal files
  • 1 import step: Step 2
  • Import all N "class" files
Input signals
  • 2 signal types
  • Regular and Abnormal
  • N signal types
  • One for each class / behavior / regime
Different regimes
  • all regimes are in the same file
  • nominal: all in "nominal" file
  • abnormal: all in "abnormal" file
  • only one regime per "class" file
  • to distinguish among N regimes, create N "class" files
File contents All files contain several examples (or repetitions, or variations) of the same signal, be it “nominal”, “abnormal”, or corresponding to a given “class” or regime. (same)

The following sub-sections are applicable to both anomaly detection and classification.

3.2.2 General approach for formatting input files properly

For both anomaly detection (AD) and classification (Cl), the expected input file format is the same:

  • .txt / .csv file
  • at least 20-50 lines representing independent signal examples
  • multiple numerical values on each line
  • same number of numerical values per line
  • numerical values only
  • uniform separators (such as comma, semicolon or other)

Each input file contains several signals, each made of many samples.

Signals:

Each line in the input file, corresponds to an observation of a signal during a given time. It is a signal example.

Each of these line comes from a sampling process that involves reading values from a signal at defined intervals, generally constant, producing a series of discrete values called samples.

Warning DB.png Important

In NanoEdge AI Studio, lines are taken into account independently, iteratively, so they must represent a meaningful snapshot in time of the signal to be measured. It it therefore crucial to set a coherent sampling frequency and a proper buffer size (see next section).

The number of lines determines how many signal examples the search algorithms can treat in total. Realistically, never use fewer than 20-50 lines per file, or millions of lines. A realistic range would be from ~100 to ~1000 lines, although ~100 are usually enough.

Samples:

During sampling, the signal values are read, generally at regular intervals. Keeping a constant sampling frequency during data acquisition is recommended, regardless of the final application.

The number of samples per signal, or buffer size, is set by the user depending on this sampling frequency (see next section), and depends on each particular use case. You need enough samples to cover the whole physical phenomenon studied, to get a proper and meaningful signal snapshot.

Info white.png Information
  • 1-axis sensor (like. pressure) with buffer size 256; file has 256 values per line.
  • 3-axis sensor (like vibration) with buffer size 256; file has 256 x3 = 768 values per line.
Warning DB.png Important

Samples are the numerical values that constitute a signal (a line). The number of samples per line, or buffer size, must stay constant across data imported in the Studio that you wish to consider together (for instance a normal / abnormal signal pair, see Studio: Importing signals).

Whenever possible, use buffer sizes that are powers of two (such as 128 or 1024 for instance).

The allowed separators are: single space, tab, , and ;.
Format decimal values using a period (.) and not commas (,).

Example:

Here is an example of signal file corresponding to a 3-axis sensor, such as a collection of m signal examples (m readings, or lines) on a 3-axis accelerometer with a buffer size of 256 on each axis, where each numerical value is separated by a single space:

NanoEdgeAI input example.png
Info white.png Information

Depending on project constraints, buffer size, signal lengths, and sampling frequencies vary.
For example, for a buffer size of 256, it could mean that:

  • the capture of 0.25-second signals, with a sampling frequency of 1 kHz implied the choice of a buffer size of 256 (256/1000 = 0.256).
  • the sampling at a higher frequency (4 kHz), so with a buffer size of 256, led to much shorter signals, 64 ms (256/4000 = 0.064).

3.2.3 Variant: aggregating multiple variables into "states"

The above procedure described how to treat signals that contain a succession of samples, often resulting from real time acquisition of a temporal signal.

However, it is also possible to create artificial signals from higher-level features, resulting from the aggregation of multiple variables, possibly coming from multiple sensors. Such signal represent instantaneous states rather than time-evolving signals.

For this purpose, "Multi-sensor" can be selected in the Studio, on the project creation screen, where you would normally select your sensors:

NanoEdgeAI MultiSensor.png

Make sure that you select the correct number of variables (for example creating a 5-variable state using a 3-axis magnetometer + temperature sensor + pressure sensor).

Warning white.png Warning
  • Multi-sensor is not intended for the simultaneous use of several temporal buffers coming from different sensor sources, namely for time series, or to monitor buffers of temporal data (such as accelerometer data or rapidly varying currents/voltages). For this purpose, use Multi-library or a Generic N-axis sensor.
  • Multi-sensor works very differently, compared to other traditional "single" sensors. It is intended for very precise use cases, when the user need to read and monitor multi-sensor machine states.
  • Multi-sensor can be used with higher-level features (such as mean, min, max and stdev), extracted from these buffers, to aggregate them into states that can be read from time to time, but not continuously.**


Warning DB.png Important
  • When using multi sensor, each line (or signal example) only contains as many values as you have variables.
  • In other words, each line represents one single sample, or one single state (whereas for "single" sensors, each line represented a succession in time of many samples).
  • In summary:
    • In mono-sensor, you have NUMBER_OF_AXES * BUFFER_LENGTH values per line.
    • In mono-sensor, a line represents a signal snapshot consisting of several samples.
    • In multi-sensor, you only have NUMBER_OF_VARIABLES values per line (effectively, a buffer length of 1).
    • In multi-sensor, a line represents a state, not a full temporal signal snapshot anymore.


Example:

For example, for an application where a state can be represented via a combination of magnetism, temperature, and pressure: it is possible to aggregate data from a 3-axis magnetometer, a (1-axis) thermometer, and a (1-axis) pressure sensor. Temperature and pressure, if they vary slowly, can be read directly, but magnetometer data needs to be summarized using (for example) average values across a 50 millisecond window along all 3 axes.

This would result in 3 extracted magnetic features, followed by temperature, followed by pressure, to represent a 5-variable state.

NanoEdgeAI input example multi1.png

It is also possible to build a more complex state from the 50-millisecond magnetometer buffer, including not only average magnetometer values, but also minimums and maximums, for all 3 axes. This would result in 3x3 = 9 extracted magnetometer values (3 each for average, minimum, maximum), followed by temperature and pressure, to represent a 11-variable state.

NanoEdgeAI input example multi2.png

3.2.4 Choosing a relevant sampling frequency and buffer size (except multi-sensor)

To prepare input data (except when using multi-sensor), it is crucial to choose the most adequate sampling frequency and buffer size for your sensors.

The sampling frequency corresponds to the number of samples measured per second. For some sensors, the sampling frequency can be directly set by the user, but in other cases, a timer needs to be set up for constant time intervals between each sample.

The speed at which the samples are taken must allow the signal to be accurately described, or "reconstructed"; the sampling frequency must be high enough to account for the rapid variations of the signal. The question of choosing the sampling frequency therefore naturally arises:

  • If the sampling frequency is too low, the readings are too far apart; if the signal contains relevant features between two samples, they are lost.
  • If the sampling frequency is too high, it may negatively impact the costs, in terms of processing power, transmission capacity, or storage space for example.
Warning DB.png Important

To choose the sampling frequency, prior knowledge of the signal is useful in order to know its maximum frequency component. Indeed, to accurately reconstruct an output signal from an input signal, the sampling frequency must be at least twice as high as the maximum frequency that you wish to detect within the input signal.

Without any prior knowledge of the signal, it is recommended to test several sampling frequencies and refine them according to the results obtained via NanoEdge AI Studio / Library (such as 200 Hz, 500 Hz, 1000 Hz, or others).

The issues related to the choice of sampling frequency and the number of samples are illustrated below:

  • Case 1: the sampling frequency and the number of samples make it possible to reproduce the variations of the signal.
NanoEdgeAI sampling freq 1.png
  • Case 2: the sampling frequency is not sufficient to reproduce the variations of the signal.
NanoEdgeAI sampling freq 2.png
  • Case 3: the sampling frequency is sufficient but the number of samples is not sufficient to reproduce the entire signal (meaning that only part of the input signal is reproduced).
NanoEdgeAI sampling freq 3.png

The buffer size corresponds to the total number of samples recorded per signal, per axis. Together with the sampling frequency, they put a constraint on the effective signal temporal length.

Warning DB.png Important

In summary, there are 3 important parameters to consider:

  • n: buffer size
  • f: sampling frequency
  • L: signal length

They are linked together via: n = f * L. In other words, by choosing two (according to your use case), the third one is constrained.

Here are general recommendations. Make sure that:

  • the sampling frequency is high enough to catch all desired signal features. To sample a 1000 Hz phenomenon, you must at least double the frequency (in this case, sample at 2000 Hz at least).
  • your signal is long (or short) enough to be coherent with the phenomenon to be sampled. For example, if you want your signals to be 0.25 seconds long (L), you must have n / f = 0.25. For example, choose a buffer size of 256 with a frequency of 1024 Hz, or a buffer of 1024 with a frequency of 4096 Hz, and so on.
Info white.png Information
For best performance, always use a buffer size n that is a power of two (for instance 128, 512 or others).

3.2.5 Which signals to put in which files

For classification, each category of signal examples that wish to be classified / separated must be put into distinct files and imported separately into different "Classes".

For anomaly detection, the general guideline is to concatenate all signal examples corresponding to the same category into the same file (like "nominal").

Example:

I want to detect anomalies on a 3-speed fan by monitoring its vibration patterns using an accelerometer. I recorded many signals corresponding to different behaviors, both "nominal" and "abnormal". I have the following signal examples (numbers are arbitrary):

  • 30 examples for "Speed 1", which I consider nominal,
  • 25 examples for "Speed 2", which I consider nominal,
  • 35 examples for "Speed 3", which I consider nominal,
  • 30 examples for "Fan turned off", which I also consider nominal,
  • Some of these signals contain "transients", like fan speeding up, or slowing down.
  • 30 examples for "fan air flow obstructed at speed 1", which I consider abnormal,
  • 35 examples for "fan orientation tilted by 90 degrees", which I consider abnormal,
  • 25 examples for "tapping on the fan with my finger", which I consider abnormal,
  • 25 examples for "touching the rotating fan with my finger", which I consider abnormal.

Here, I create

  • Only 1 nominal input file containing all 120 signal examples (30+25+35+30) covering 4 nominal regimes + transients.
  • Only 1 abnormal input file containing all 115 signal examples (30+35+25+25) covering 4 abnormal regimes.

And start a benchmark using only this couple of input files.

Warning DB.png Important
  • Note that all speeds are not necessarily represented in "abnormal behaviors".
  • It is not a problem. Later on, unseen anomalies can still be detected, because the learning happens in-situ, and not in the Studio
Info white.png Information

For anomaly detection, the Studio gives the possibility to add several signal couples, which seems contrary to the instructions above. In fact, adding signal couples is used when creating a general AI library that adapts to different types of machines.

Example:

I want to detect anomalies on industrial pumps of different brands / types. My detection algorithms need to be adaptable, instead of specialized. I recorded different nominal behaviors (such as pump running at max capacity or pump running at half capacity) on three different pumps (Pump A, Pump B and Pump C). I also recorded one type of anomaly (such as minor leak) for each of the 3 pump types, so I have 3 batches of abnormal signals.
Therefore I:
  • Concatenate all nominal behaviors for Pump A into one nominal file "Nominal A",
  • Concatenate all nominal behaviors for Pump B into a separate nominal file "Nominal B",
  • Concatenate all nominal behaviors for Pump C into a separate nominal file "Nominal C",
  • Also import my anomalies into 3 separate files, "Abnormal A", "Abnormal B" and "Abnormal C".
And start a benchmark using 3 couples of signal files:
  • "Nominal A" + "Abnormal A"
  • "Nominal B" + "Abnormal B"
  • "Nominal C" + "Abnormal C"

4 Using NanoEdge AI Studio

In order to generate a static library, NanoEdge AI Studio walks the user through several steps:

  1. Creating a new project and setting up its parameters,
  2. Importing "signal examples" into the studio for context,
  3. Running the library selection process,
  4. Testing the best library found by the Studio,
  5. Compiling and downloading the library [Full version / Featured boards only].

For anomaly detection:

NanoEdgeAI ad all steps.png

For classification:

NanoEdgeAI class all steps.png

4.1 Creating a new project

In the main window, you can:

  • Create a new project
  • Load an existing project
NanoEdgeAI home settings create.png

Projects can be imported from and exported to .zip format:

NanoEdgeAI import export projects.png

The 3 projects most recently opened are listed first.

4.1.1 Navigation

4.1.2 Project creation

NanoEdgeAI 2 project details.png
  1. Choose project type: Anomaly detection or Classification:
    NanoEdgeAI_choose_ad_or_class.png
  2. Enter name and description;
  3. Choose the target (microcontroller type);
    NanoEdgeAI 2 target boards.png
    Arm® Cortex®-M MCUs currently supported: M0, M0+, M1, M3, M4, M23, M33 and M7.
    Selecting an authorized board enables library download and compilation when using NanoEdge AI Studio TRIAL version.
    Here is the list of the authorized boards currently available:
    STMicroelectronics:
  4. Choose the maximum amount of RAM allocated to the library (maximum: 10 000 Kbytes);
  5. (optional) Choose the maximum amount of FLASH allocated to the library;
  6. Choose the sensor type used to collect data (with the correct number of axes);
  7. Click CREATE.

4.1.3 Which sensor to use for which case

Single-sensor temporal buffer:

This is the typical single-sensor use case where a signal example is composed of a buffer made out of several samples (such as current, magnetometer, accelerometer, or others) Valid sensors to use would be:


Multi-sensor temporal buffer:

To work with temporal buffers coming from multiple sensors of different types, there are 2 different approaches:

  1. Separate each sensor signal, and create a library for each one, using Multi-library.
    Each signal is decoupled and treated on its own by a different library. See the Multi-library section. This is very similar to the Single-sensor buffer case above, but this time there is a need to monitor several buffers coming from several sensors, concurrently, in the same device.
  2. Combine all signals into a single buffer, by using a generic N-axis sensor.
    All signals are treated concurrently by the same library. The Machine Learning algorithms build therefore a model based on the combination of these inputs (unlike option #1).
    NanoEdgeAI generic n axis.png

    Example:
    To combine accelerometer (3 axes) + gyroscope (3 axes) + current (1 axis) signals, you would select a generic 7-axis sensor.

    The buffers in the input files are formatted just like a generic 3-axis accelerometer (see this section formatting), but each sample now has 7 variables. Instead of the 3 linear accelerations [X Y Z], the 7-axis sample adds 3 angular accelerations [Gx Gy Gz] from the gyroscope, and 1 current value [C] from the current sensor.

    This would result in 7-axis samples [X Y Z Gx Gy Gz C], meaning that for a buffer size of 256, each line would be composed of 7x256 = 1792 numerical values.
Warning white.png Warning
*For this option (option #2), all the signals to be combined need to be sampled at the same rate (one single sampling frequency)
Info white.png Information
The generic N-axis sensor is limited to a maximum of 1000 axes (or variables)


Multi-sensor non-temporal state:

See the Multi-sensor section. This is a niche use case, where machine states need to be monitored at defined intervals. Each state is composed of several "variables" (there is no buffer anymore), possibly coming from sensors of different types.

NanoEdgeAI MultiSensor.png
Info white.png Information
Multi-sensor is limited to a maximum of 1000 variables.

4.2 Importing signal files

4.2.1 Anomaly detection

For anomaly detection, two types of signals examples are required. They are imported respectively in Step 2: Regular signals and Step 3: Abnormal signals.

  • The Regular signals correspond to nominal machine behavior, corresponding to data acquired by sensors during normal use, when everything is functioning as expected.
NanoEdgeAI 22 screen2 top.png

Include data corresponding to all the different regimes, or behaviors, that you wish to consider as "nominal". For example, when monitoring a fan, you may need to log vibration data corresponding to different speeds, possibly including the transients.

  • The Abnormal signals correspond to abnormal machine behavior, corresponding to data acquired by sensors during a phase of anomaly.
NanoEdgeAI 33 screen3 top.png

The anomalies do not have to be exhaustive. In practice, it would be impossible to predict (and include) all the different kinds of anomalies that could happen on your machine. Just include examples of some anomalies that you've already encountered, or that you suspect could happen. If needed, do not hesitate to create "anomalies" manually. However, if the library is expected to be sensitive enough to detect very "subtle anomalies", it is recommended that the data provided as abnormal signals includes at least some examples of subtle anomalies as well, and not only very gross, obvious ones.

To import a new file, simply click "Choose Signals".

Warning DB.png Important

These signals files are only necessary to give the benchmark algorithms some context, in order to select the best library possible.

At this stage, no learning is taking place yet. In later stages, after the optimal library is selected, compiled, and downloaded, it is completely fresh, brand new, untrained, and has no established knowledge.

The learning process that is then performed, either via NanoEdge AI Emulator, or in your embedded hardware application, is completely unsupervised.

4.2.2 Classification

For classification, you need as many signal types as you have classes to distinguish.

For example, for the identification of types of failures on a motor, 5 classes can be considered, each corresponding to a behavior, such as:

  1. normal behavior
  2. misalignment
  3. imbalance
  4. bearing failure
  5. excessive vibration

This would result in the creation of 5 distinct classes (import one .txt / .csv file for each), each containing a minimum of 20-50 signal examples of said behavior.

NanoEdgeAI classes step.png

To add a new class, simply click "Add Class" and then "Choose Signals".

NanoEdgeAI add class.png

4.2.3 Importing signals from file

Make sure that your input files are formatted properly (see Studio: Formatting input files).

  • Click Select file, and choose a valid input file.
  • Select the separator you are using.
  • Validate import.
NanoEdgeAI import signals file.png

If your input file is valid, you are able to import it. Otherwise, double-check your data (numerical values, uniform separators, or constant number of samples per line).

Any imported signal can be plotted and displayed by clicking the icon:

NanoEdgeAI plotter icon.png

Plots can then be saved to .png format.

4.2.4 Importing signals "live" from Serial port (USB)

It is possible to import signals directly within the Studio, by logging it through your computer serial port (USB).

Info white.png Information
If you need to open a serial / COM port on Linux®, check the FAQ for instructions.

You need a USB data logger in order to do it. For instructions on how to make a simple data logger, check the tutorials: Smart vibration sensor and Smart current sensor, under section Making a data logger.

  • Select your Serial / COM port. Refresh if needed.
  • Choose your preferred baudrate.
  • If needed, select a maximum number of lines to be recorded.
  • Click the red "Record" round button to start the data logging.
  • Click the grey "Stop" square button to interrupt the logging.
  • Choose your delimiter.
  • Validate import.
NanoEdgeAI import signals serial.png

If your data is valid, you are able to import it. Otherwise, double-check your data logger parameters.

The data logged via serial is plotted in real-time at the bottom of the screen:

This serial plotter window can be toggled on/off by clicking the signal icon, above numlerical data preview:

If any error is found during the real-time data logging via serial, a pop-up window appears, letting you delete or edit the lines where issues were detected.

NanoEdgeAI line error.png
Info white.png Information
All imported signals can easily be plotted, displayed and saved to .png by clicking the blue eye icon at the right side of the screen, above the preview tables.
Warning white.png Warning
  • Your data logger must output lines containing a constant number of samples per line, all separated by the same separator.
  • Your data logger must also output signals one line at a time to be coherent with the way input files are formatted, see the Formatting section.

4.2.5 Checks, errors and warnings

Supported file formats are .txt / .csv. Recommended separators are single spaces, commas or semicolons. Make sure that your input file is correctly formatted.

In this example, an input file contains 200 examples of nominal data (200 lines), for a 3-axis accelerometer that uses a buffer size of 256 (which gives 256x3 = 768 numerical values per line).

NanoEdgeAI checks ok.png

The "Check for RAM"" and the next 5 checks are blocking, meaning that you need to fix any error in your input file before proceeding further.

Click "Run optional checks"" to scan your input file and run additional checks, for instance. to search for duplicate signals, equal consecutive values, random values, outliers, and others. Failing these additional checks gives warnings that suggest possible modifications on your input files. Click any warning for more information and advice.

NanoEdgeAI checks warning.png
Info white.png Information
If you imported data live using a data logger through your Serial port, you can download the resulting .csv file by clicking the icon, at the top-right of the checks.

4.2.6 Data plots

On the right of the screen, you can see a preview of data contained in your input files.

NanoEdgeAI 22 screen2 graph.png

These graphs show a summary of the data contained in each line of your input files. There are as many graphs as sensor axes.

The graph x-axis corresponds to the columns of your input file. The y-values contain an indication of the mean value of each column (across all lines, or signals), their min-max values, and their standard deviation.

Info white.png Information
Here, the accelerometer sampled 256 values per line (per axis), so the graphs x-axis show 256 points. These graphs do not represent a temporal evolution of the behavior of your machine as a whole, but rather a snapshot of the actual physical signals, averaged across all lines.

The FFT plots can be displayed by toggling "Show FFT" at the top-right of the graphs.

NanoEdgeAI fft preview.png

Several input files can be loaded (shown on the left of the screen, see below), either for "regular" or "abnormal" signals, but only one (for each) at a time is used for library selection.

NanoEdgeAI 22 screen2 sigfiles.png
Info white.png Information
If FFT was manually activated via Advanced settings (see below), the FFT plots of your signals also appear under signal previews, for each axis.

4.2.7 Frequency filtering

Since v2.1, it is now possible to alter the imported signals by filtering out unwanted frequencies.
Click Advanced settings above the list of imported signals.

NanoEdgeAI fft advanced settings.png

In the Advanced settings menu, you may toggle Activate FFT to force the library to include a fast Fourier transform in its signal pre-processing step. The library treats imported signals in the frequency domain rather than the time domain.

NanoEdgeAI fft menu.png
  1. Input the sampling frequency used to collect your signals (here 6660 Hz)
  2. Select the range of frequencies to exclude (meaning that everything is excluded under 500 Hz and above 2000 Hz)
  3. Validate
Warning white.png Warning
Activating FFT applies the chosen FFT settings to all signals within the current project.

The FFT plots of your signals are displayed under signal previews, with greyed out zones corresponding to the excluded frequencies (below, only the frequencies between 500 Hz and 2000 Hz are kept).

NanoEdgeAI fft graph.png

4.3 Running the library selection process

Here (Step: Optimize and Benchmark), you start and monitor the library benchmark. NanoEdge AI Studio searches for the best possible library given the contextual signal examples provided in the previous step(s).

NanoEdgeAI 44 screen4 top notstarted.png

4.3.1 Starting the benchmark

Click START to open the signal selection window:

[Anomaly detection]:

NanoEdgeAI 55 pre benchmark.png

Select a couple of signal files (regular + abnormal signals) that you wish to use for benchmark.
Those signals can be compared visually across all sensor axes by clicking Compare these signals.

Warning DB.png Important

You can select several couples to be used to test the performance of all candidate libraries. For example, if you have logged data of similar type on 3 different machines, you must import them and select them here, to add 3 normal/abnormal signal couples, one corresponding to each machine.

NanoEdgeAI 55 select signals.png

NanoEdgeAI 55 group signals.png

For more information about adding signal couples (vs. concatenating signals in the same file), check "Which signals should I put in which files" file_content or the the FAQ 'Section I. A. 7. Should I concatenate data into single files, or use “signal couples”?

[Classification]:

Select the classes to take into consideration for benchmarking.

Then, select the number of microprocessor cores from your computer that you wish to dedicate to the benchmark process (see below). Selecting more CPU cores parallelizes the workload of algorithms, and greatly speed up the process. Use as many as you can, but be aware that using all available CPU cores might temporarily slow down your computer performance.

When you are ready to start the benchmark, click Validate.

4.3.2 Library performance indicators

NanoEdge AI Studio uses 3 indicators to translate the performance and relevance of candidate libraries, in the following order of priority:

  • (Balanced) accuracy (most important by far)
  • Confidence
  • RAM
  • Fèlash memory
NanoEdgeAI perf indicators.png
Balanced Accuracy (anomaly detection) Accuracy (classification)
  • Library ability to correctly identify regular signals as regular, and abnormal signals as abnormal.
  • 100% balanced accuracy = all signals are correctly identified.
  • Library ability to attribute each signal to the correct class.
  • 100% accuracy = all signals are attributed to the correct class.
Optimizing this indicator is the top priority of the algorithms.
Confidence (anomaly detection) Confidence (classification)
  • Library ability to mathematically separate abnormal signals from regular ones.
  • 100% confidence = all regular signals are at 100% similarity, all abnormal ones at 0% (see graphs below).
  • Library ability to (correctly) attribute signals with high certainty.
  • 100% confidence = all classes are correctly attributed with a probability of 100%.
Increasing this indicator is the algorithms' second priority.
RAM and Flash memory (anomaly detection and classification)

This is the maximum amount of RAM and Flash memory space needed by the library after your integrate it on your microcontroller.
There is also an indication of the extra (RAM) memory needed for saving signal buffers.

The amounts of Flash memory and RAM used by the libraries are optimized last.

Along with those 3 indicators, a graph shows a plot of all data points, against a percentage of similarity (on the y-axis). Similarity is a measure of the how much a given data point fits in with (how much it resembles) the existing knowledge base of the library.

[Anomaly detection]:

Regular signals are shown as blue dots, and abnormal signals as red dots. The x-axis represents the number of the signal example in the corresponding file, and the y-axis represents the similarity score (%). The threshold (decision boundary between the two classes, "nominal" and "anomaly") set at 90% similarity, is shown as a gray dashed line.

NanoEdgeAI 44 screen4 plotsignalalone.png

For example:

  • The blue dot below refers to a signal from the imported "nominal signals" input file, and it is ranked at 67% similarity. It is (incorrectly) detected as anomaly.
  • The red dot below refers to a signal from the imported "abnormal signals" input file, and it is ranked at 60% similarity. It is (correctly) detected as anomaly.
NanoEdgeAI nomi signal example.png
NanoEdgeAI anom signal example.png
Info white.png Information
  • 100% balanced accuracy means that all blue dots are above the 90% threshold, and all red points are below.
  • 100% confidence means that all blue dots are at 100% similarity, while all red dots are at 0% similarity.

[Classification]:

The graph is subdivided into sections, one for each class. The x-axis shows the number of the signal example in the corresponding class file, while the y-axis represents the probability associated to this signal (the % certainty associated to the class detected).

All signal examples are represented as dots, either green if their associated probability is higher than 50%, or red otherwise.

NanoEdgeAI classif graph.png


For example:

  • The red dot below, pertaining to the class / input file "Obstructed" was (incorrectly) classified as "Nominal".
  • All other dots (green) were correcly identified as their respective classes.
NanoEdgeAI classif signal example.png
Info white.png Information
As the benchmark progresses, confidence may decrease slightly, and RAM / Flash memory may vary dramatically, but (balanced) accuracy keeps improving so that at any time, you always get the most optimal library.

4.3.3 Benchmark progress and summary

As soon as the library selection process is initiated, a graph is displayed on the right hand side of the screen (see below), showing the evolution of the 3 performance indicators (see above section) over time, as thousands of candidate library are tested.

NanoEdgeAI 44 progress plot.png


Warning white.png Warning
If the benchmark seems stuck at 5%, and nothing is happening within a minute (no plot, or axes with no data points), stop the benchmark, and start a new benchmark. If the issue keeps happening, relaunch the Studio.

The selection algorithms first try to maximise balanced accuracy, then confidence, and finally to decrease the RAM / Flash memory needed as much as possible.

Info white.png Information
  • The benchmark process may take from tens of minutes to several hours, depending on your CPU speed and number of cores. Be patient and let the benchmark complete.
  • Benchmarks may be paused and resumed at any time.
NanoEdgeAI benchmark pause stop.png
A paused benchmark appears in your benchmark list with the corresponding "pause" icon.
NanoEdgeAI benchmark paused.png
To resume it, or stop it completely, click resume or stop in the benchmark information, to the right side of the screen.
NanoEdgeAI benchmark resume.png
  • In Windows® 10, the benchmark progress is shown on the NanoEdge AI Studio taskbar icon.
Warning DB.png Important

Anytime during benchmark, you can test the current library without pausing / stopping the benchmark.
While a benchmark is running, just move on to Step: Emulator to use an Emulator to test the best library found so far, or move on to Step: Deploy to compile and deploy it [Paid version / Featured boards only].

While a benchmark is running, a small log window displays notable information / events such as benchmark status, search speed per thread, and new libraries found.

NanoEdgeAI benchmark info.png

When the benchmark is complete, the progress graph is be replaced by a summary.

NanoEdgeAI benchmark lib results.png
Info white.png Information
Only the best library (in terms of Accuracy) is shown. However, several "candidates" are saved for each benchmark.

You may select a different library by clicking "N libraries" (see above, "16 libraries"). This feature is useful if you want to use a library that has better performance in terms of a secondary indicator (for instance if you want to prioritize low RAM or high Confidence). NanoEdgeAI benchmark change lib.png

Just select a different library by clicking the crown icon, under "Lib selected", and validate your change of result by clicking OK.

Several successive benchmarks can be run; all results are saved. They can be loaded by clicking them on the left hand side of the screen.

NanoEdgeAI 44 screen4 benchmarks left.png

[Anomaly detection only]: After the benchmark is complete, a plot of the library learning behavior is shown:

NanoEdgeAI 44 screen4 plotiteration.png

This graph shows the number of learning iterations needed to obtain optimal performance from the library, when it is embedded in your final hardware application. In this particular example, NanoEdge AI Studio recommended that the learn() is called 70 times, at the very minimum.

Warning white.png Warning
  • Never use fewer iterations than the recommended number, but feel free to use more (for example 3 to 10 times more).
  • This iteration number corresponds to the number of lines to use in your input file, as a bare minimum.
  • These iterations must include the whole range of all kinds of nominal behaviors that you want to consider on your machine.

4.3.4 Possible cause for poor benchmark results

If your keep getting poor benchmark results, you may try the following:

  • Increase the "Max RAM" or "Max Flash"" parameters (such as 32 Kbytes or more).
  • Adjust your sampling frequency; make sure it is coherent with the phenomenon you want to capture.
  • Change your buffer size (and hence, signal length); make sure it is coherent with the phenomenon to sample.
  • Make sure your buffer size (number of values per line) is a power of two (except for multi-sensor).
  • If using a multi-axis sensor, treat each axis individually by running several benchmarks with a single-axis sensor.
  • Include more signal examples (lines) in your input files.
  • Check the quality of your signal examples; make sure they contain the relevant features / characteristics.
  • Check that your input files do not contain (too many) parasite signals (for instance no anomalous signals in the nominal file, for anomaly detection, and no signals belonging to another class, for classification).
  • Increase the variety of your signal examples (more nominal regime, or more anomalies, or more classes).
  • Decrease the variety of your signal examples ( fewer nominal regime, or fewer anomalies, or fewer classes).
  • Check that the sampling methodology and sensor parameters are kept constant throughout the project for all signal examples recorded (in all input files; nominal, abnormal or class files).
  • Check that your signals are not too noisy, too low intensity, too similar, or unrepeatable.
  • Remember that microcontrollers are resource-constrained (audio/video, image and voice recognition are not be supported).

Low confidence scores are not necessarily an indication or poor benchmark performance, if the (balanced) accuracy is sufficiently high (> 80-90%). Always use the associated Emulator to determine the performance of a library, preferably using data that has not been used before (for the benchmark).

Warning DB.png Important

Signal confirmation procedure:

Even with lower (balanced) accuracy scores, detection results can often be greatly improved by implementing a simple confirmation mechanism in the final algorithm / C code. This approach may prove extremely useful, depending on the use case, to limit the number of false positives (or false negatives).

In practice, it consists in validating anomalies before raising alerts, instead of taking the detection results directly. For example, anomalies may be counted as "true anomalies" only after N successive validations using consecutive (distinct) data buffers. The same approach can of course be used to confirm "nominal" signals. Validations can be made using counters, or any statistical tool such as means, modes, or others.

The same approach can be used to confirm that a signal pertains to the correct class, in classification projects. This is useful to minimize classification errors, or eliminate transient regimes.

[Classification only]: in classification projects, this confirmation feature is available natively when using the Emulator to test libraries with serial data (see this section).

4.4 Testing the NanoEdge AI Library

Here (Step: Emulator), you are able to test the library that was selected during the benchmark process (Step: Optimize and Benchmark) using NanoEdge AI Emulator.

NanoEdgeAI 5 emulator top.png

NanoEdge AI Emulator is a clone of the library that emulates its behavior, and is directly usable within the Studio interface. There is no need to embed a library in order to test its performance with real, "unseen" data. Therefore, each library, among hundreds of thousands of possibilities, comes with its own Emulator.

The Emulator can be also be downloaded as a standalone .exe (Windows®) or .deb (Linux®) to be used in the terminal through the command line interface.

Info white.png Information
Refer to the documentation before using the Emulator through the CLI (Emulator for anomaly detection or Emulator for classification).


This screen gives a summary of the selected benchmark (progress, performance, input files used):

Select the benchmark to use, on the left side of the screen, to load the associated emulator.

When you are ready to start testing, click Initialize Emulator.

4.4.1 Anomaly detection

Functions:

Here are the functions of the anomaly detection library that are available through its Emulator:

initialize() run first before learning/detecting, or to reset the knowledge of the library/emulator
set_sensitivity() adjust the pre-set, internal detection sensitivity (does not affect learning, only returned similarity scores)
learn() start a number of learning iterations (to establish an initial knowledge, or enrich an existing one)
detect() start a number detection iterations (inference), once a minimum knowledge base has been established

For more information, see the Emulator and Library documentations for anomaly detection.

The testing procedure goes as follows:

NanoEdgeAI ad emu functions.png
Warning DB.png Important

When building a smart device, the final features heavily depend on the way those functions are called. It is entirely up to the developer to design relevant learning and detection strategies, depending on the project specificities and constraints.

NanoEdgeAI ild.png

For example for a hypothetical machine, one strategy could be to:

  • initialize the model
  • establish an initial knowledge base by calling learn() every minute for 24 hours on that machine
  • switching to inference mode by calling detect() 10 times every hour (and averaging the returned scores), each day
  • blink a LED and ring alarms whenever detect() returns any anomaly (average score <90%)
  • run another learning cycle to enrich the existing knowledge, if temperature rises above 60°C (and the machine is still OK)
  • send a daily report (average number of anomalies per hour, with date, time, machine ID) using Bluetooth® or LoRa®

In summary, those smart functions can be triggered by external data (from sensors, buttons, to account for and adapt to environment changes).
The scores returned by the smart functions can trigger all kinds of behaviors on your device.
The possibilities are endless.

Learning:

After initialization, no knowledge base exists yet. It needs to be acquired in-situ, using real signals. Your library is not pre-trained with the signals imported before benchmark, in Steps 2 and Step 3. Therefore, you need to learn some signals.

Warning white.png Warning
A learning phase corresponds to several iterations of the learn() function. You must use at least the minimum number of iterations recommended in the benchmark summary from Step 4. This learning is incremental and unsupervised.

To learn some signals from a file, click Select file and open the file containing your training data.

To learn some signals "live" from your Serial port, using your own data logger, click Serial data. Then, select your Serial / COM port (refresh if needed), choose your preferred baudrate, and Start recording by clicking the red button.

As soon as some signals are learned, the number of learned signals is indicated.

Click Go to detection after all relevant signals (nominal, by definition) have been learned.

Detection:

When a first knowledge base has been established, you can use Detection using any signals, to check if they would be classified as nominal or anomaly by the library, and make sure this library performs as intended.

As usual, the signals to use for detection can be imported from file, or from Serial port using a data logger.

Select the signals that you wish to use, and adjust the sensitivity if needed. A pie chart summarizes the detection results.

When detecting using live data from the Serial port, a graph shows how the detection performance (similarity percentage) evolves in real time.

Info white.png Information
All details of all learning and detection iterations (such as similarity and signal status) are available on the terminal window embedded on the right side of the screen.
NanoEdgeAI ad emu terminal output.png
Info white.png Information
Feel free to repeat as many times as needed, adjusting the sensitivity or running additional Learning cycles in the process.
  • If the results obtained are satisfactory, move on to the next step, and Deploy your library on your microcontroller.
  • Otherwise, it is time to review your data logging procedure (sampling frequency, buffer size, signal length), import other sets of signals, and start a new benchmark. Also see the next section, Possible cause of poor emulator results.

You will probably not land your ideal library the first time. Using NanoEdge AI Studio is an iterative process. Try, learn, adjust, and repeat!

4.4.2 Classification

Here are the functions of the classification library that are available through its Emulator:

knowledge_init() run first to initialize the knowledge
classifier() run an inference iteration (detect which class the input signal belongs to)

For more information, see the Emulator and Library documentations for classification.

Just like in anomaly detection (see "Important" section above), the classifier function can be called dynamically whenever needed. It can be triggered by external data (for example from sensors, buttons, to account for and adapt to environment changes), and the class / probabilities returned can trigger all kinds of behaviors on your device.

To classify signals from a file, click Select file and open the file containing the signal examples to classify. You can see a pie chart summarizing the classification.

The image below shows data from a 3-speed fan:

  • 3 signals were detected at "speed 1"
  • 7 at "speed 2"
  • 17 at "speed 3"
  • 6 when the fan air flow was obstructed
  • and so on
NanoEdgeAI class emu signals file.png


You see a pie chart summarizing the classification, as well as a graph showing the probabilities associated to each classification iteration (the image below shows data from a 3-speed fan, and "speed 1" is currently being detected).

NanoEdgeAI class emu signals live.png
Warning DB.png Important

To minimize classification errors, or eliminate transient regimes during your detections, you may choose to validate signals by increasing the number of consecutive confirmations.

In the example above, the number of confirmations is set to 2, meaning that a signal is only validated as pertaining to a given class after 2 consecutive data buffers have been successfully classified.

In this example, on a total number of 96 signals seen, 40 verified classifications have been counted (8+8+5+5+4+5+5), out of a possible maximum of 96/2 = 48.

See also this note about Signal confirmation procedure.

Info white.png Information
All details of all classification iterations (such as class IDs and class probabilities) are available on the terminal window embedded on the right side of the screen.
NanoEdgeAI class emu terminal output.png

4.4.3 Possible causes of poor emulator results

Here are possible reasons for poor anomaly detection or classification results:

  • The data used for library selection (benchmark) is not coherent with the one you are using for testing via Emulator/Library. The regular/abnormal or class signals imported in the Studio must correspond to the same machine behaviors, regimes, and physical phenomena as the ones used for testing.
  • Your (balanced) accuracy score was well below 90% or your confidence score was too low to provide sufficient data separation.
  • You used an insufficient number or signals in either regular/abnormal or class signal files. Make sure that you used enough lines in your input files (minimum 20-50). For anomaly detection, make sure that you use at least the minimum number recommended by the Studio, and possibly more.
  • The sampling method is inadequate for the physical phenomena studied, in terms of frequency, buffer size, or duration for instance.
  • The sampling method has changed between Benchmark and Emulator tests. The same parameters (frequency, signal lengths, buffer sizes) must be kept constant throughout the whole project.
  • [Anomaly detection]: you have not run enough learning iterations (your Machine Learning model is not rich enough), or this data is not representative of the signal examples used for benchmark. Do not hesitate to run several learning cycles, as long as they all use nominal data as input (only normal, expected behavior should be learned).
  • [Classification]: the machine status or working conditions have drifted between Benchmark and Emulator tests, and classes are not recognized anymore. In that case, update the imported "class" files, and start a new benchmark.

4.5 Downloading the NanoEdge AI Library

This feature is only available:

  • in the Trial version of NanoEdge AI Studio, limited to the featured boards which can be selected during project creation
  • in the Paid version of NanoEdge AI Studio

4.5.1 General case

In this step (Step: Deploy), the library is compiled and downloaded, ready to be used on your microcontroller for your embedded application.

NanoEdgeAI 6 deploy top.png

Before compiling the library, several compilation flags are available:

[[File:NanoEdgeAI_compilation_flags.png]

If you ran several benchmarks, make sure that the correct benchmark is selected. Then, when you are ready to download the NanoEdge AI Library, click Compile.

NanoEdgeAI compile.png

Select Development version to get a library that is intended for testing and prototyping. If you would like to start producing your device, integrating NanoEdge AI Library, contact STMicroelectronics for more details and to get the proper library version.

After a short delay, a .zip file is downloaded to your computer.

NanoEdgeAI 6 zip file.png

It contains all relevant documentation, the NanoEdge AI Emulator (both Windows® and Linux® versions), the NanoEdge AI header file (C and C++), a .json file containing some library details, and the model knowledge (for classification only).

You can also re-download any previously compiled library, via the archived libraries list:

NanoEdgeAI 6 archived libraries.png

4.5.2 Multi-library

In this final step (Step: Deploy) you also have the possibility to add a suffix to the library you are about to compile and download.

NanoEdgeAI multi library.png

This is useful to integrate multiple libraries into the same device / code, when there is a need to:

  • monitor several signal sources coming from different sensor types, concurrently, independently,
  • train Machine Learning models and gather knowledge from these different input sources,
  • take decisions based on the outputs of the Machine Learning algorithms for each signal type.

For instance, one library can be created for 3-axis vibration analysis, and suffixed vibration:

NanoEdgeAI multilib vibration.png

Later on, a second library can be created later on, for 1-axis electric current analysis, and suffixed current:

NanoEdgeAI multilib current.png

All the NanoEdge AI functions in the corresponding libraries (as well as the header files, variables, and knowledge files if any) is suffixed appropriately, and is usable independently in your code. See below the header files and the suffixed functions and variables corresponding to this example:

NanoEdgeAI multi lib suffixes.png

Congratulations! You can now use your NanoEdge AI Library!
It is ready to be linked to your C code using your favorite IDE, and embedded in your microcontroller.

For more info, check the library documentation (AD library, CL library), as well as the code snippets on the right side of the screen, which provide general guidelines about how your code could be structured, and how the NanoEdge AI Library functions must be called.

5 Resources

Documentation
All NanoEdge AI Studio documentation is available here.

Tutorials
Step-by-step tutorials, to use NanoEdge AI Studio to build a smart device from A to Z.