🕵️ SicherheitslückenHak5: Hackers Just Poisoned the Rust Supply Chain | Threat Wire(01.09.2026 um 14:00 Uhr)
🕵️ SicherheitslückenHak5: Hackers Found a Way Into Humanoid Robots | Threat Wire(04.09.2026 um 15:04 Uhr)
🔧 AI Nachrichten Bits und so #1021 (Passwort für Laufwerk)(31.08.2026 um 22:15 Uhr)
🔧 AI Nachrichten Bits und so #1022 (Wie Weißbier)(06.09.2026 um 20:39 Uhr)
🍏 iOS / Mac OSHue-App 6.0 ist da: das sind die Neuerungen(07.09.2026 um 17:21 Uhr)
🕵️ SicherheitslückenHak5: Hackers Just Poisoned the Rust Supply Chain | Threat Wire(01.09.2026 um 14:00 Uhr)
🕵️ SicherheitslückenHak5: Hackers Found a Way Into Humanoid Robots | Threat Wire(04.09.2026 um 15:04 Uhr)
🔧 AI Nachrichten Bits und so #1021 (Passwort für Laufwerk)(31.08.2026 um 22:15 Uhr)
🔧 AI Nachrichten Bits und so #1022 (Wie Weißbier)(06.09.2026 um 20:39 Uhr)
🍏 iOS / Mac OSHue-App 6.0 ist da: das sind die Neuerungen(07.09.2026 um 17:21 Uhr)

🎥 Künstliche Intelligenz Videos 🕛 vor 5 Jahren 14 Min Lesezeit
0

Building a TinyML Application with TF Micro and SensiML

↗ Quelle (blog.tensorflow.org)
🗣️ Stimme:
📑 Inhaltsübersicht

A guest post by Chris Knorowski, that trigger an action when a person is detected in an image or a keyword is spoken .

  • Predictive maintenance on industrial machines using sensors to continuously monitor for anomalous behavior.
  • Gesture and activity detection for medical, consumer, and agricultural devices, such as gait analysis, fall detection or animal health monitoring.
  • One common factor for all these applications is the low cost and power usage of the hardware they run on. Sure, we can detect audio and visual wake words or analyze sensor data for predictive maintenance on a desktop computer. But, for a lot of these applications to be viable, the hardware needs to be inexpensive and power efficient (so it can run on batteries for an extended time).

    Fortunately, the hardware is now getting to the point where running real-time analytics is possible. It is crazy to think about, but the our goal is to empower developers to rapidly add AI to their own edge devices, allowing their applications to autonomously transform raw sensor data into meaningful insight. We have taken years of lessons learned in creating products that rely on edge optimized machine learning and distilled that knowledge into a single framework, the that is capable of recognizing different boxing punches in real-time using the Gyroscope and Accelerometer sensor data from the onboard IMU sensor.

    to handle collecting and annotating sensor data, creating a sensor preprocessing pipeline, and generating the firmware. We will use for inferencing. Before you start, we recommend signing up for SensiML , an open-source python application to stream data from edge devices.
  • We will use the to train our model using TensorFlow Lite for Microcontrollers
  • We will use the with the has an Arm Cortex-M4 microcontroller running at 64 MHz with 1MB Flash memory and 256 KB of RAM. If you are used to working with cloud/mobile this may seem tiny, but many applications can run in such a resource-constrained environment.

    The Nano 33 BLE Sense also has a variety of onboard sensors which can be used in your TinyML applications. For this tutorial, we are using the motion sensor which is a 9-axis IMU (accelerometer, gyroscope, magnetometer).

    For wireless power, we used the Adafruit Li-Ion Battery Pack. If you do not have the battery pack, you can still walk through this tutorial using a suitably long micro USB cable to power the board. Though collecting gesture data is not quite as fun when you are wired. See the images below hooking up the battery to the Nano 33 BLE Sense.

    Building Your Data Set

    For every machine learning project, the quality of the final product depends on the quality of your data set. Time-series data, unlike image and audio, are typically unique to each application. Because of this, you often need to collect and annotate your datasets. The next part of this tutorial will walk you through how to connect to the Nano 33 BLE Sense to stream data wirelessly over BLE as well as label the data so it can be used to train a TensorFlow model.

    For this project we are going to collect data for 5 different gestures as well as some data for negative cases which we will label as Unknown. The 5 boxing gestures we are going to collect data for are Jab, Overhand, Cross, Hook, and Uppercut.

    running on our computer to retrieve the sensor data. To download and launch the gateway open a terminal and run the following commands:

    PYTHON
    git clone https://github.com/sensiml/open-gateway

    cd open-gateway
    pip3 install -r requirements.txt
    python3 app.py

    The gateway should now be running on your machine.

    to your Nano 33. This firmware implements the

    The gateway will pull the configuration from your device, and be ready to start forwarding sensor data. You can verify it is working by going to the Test Stream tab and clicking the Start Stream button.

    Setting up the Data Capture Lab Project

    Now that we can stream data, the next step is to record and label the boxing gestures. To do that we will use the and install the Data Capture Lab to record sensor data.

    We have created a template project to get you started. The project is prepopulated with the gesture labels and metadata information, along with some pre-recorded example gestures files. To add this project to your account:

    1. Download and unzip the

    Connecting to the Gateway

    After uploading the project, you can start capturing sensor data. For this tutorial we will be streaming data to the Data Capture Lab from the gateway over TCP/IP. To connect to the Nano 33 BLE Sense from the Data Capture Lab through the gateway:

    1. Open the Project Boxing Glove Gestures Demo
    2. Click Switch Modes -> Capture Mode
    3. Select Connection Method: Wi-Fi
    4. Click the Find Devices button
    5. Enter the IP Address of your gateway machine, and the port the server is running on (typically 127.0.0.1:5555)
    6. Click Add Device
    7. Select the newly added device
    8. Click the Connect button
    for troubleshooting.

    . This can be extremely helpful during the annotation phase to help interpret what is happening at a given point in the time-series sensor waveforms.

    Now that data is streaming into the Data Capture Lab, we can begin capturing our gesture data set.

    1. Select “Jab” from the Label dropdown in the Capture Properties screen. (this will be the name of the file)
    2. Select the Metadata which captures the context (subject, glove, experience, etc.)
    3. Then click the Begin Recording button to start recording the sensor data
    4. Perform several “Jab” gestures
    5. Click the Stop Recording button when you are finished

    After you hit stop recording, the captured data will be saved locally and synced with the cloud project. You can view the file by going to the Project Explorer and double-clicking on the newly created file.

    The Data Capture Lab has two methods for labeling your events: Manual and Auto. In manual mode you can manually drag and drop a segment onto the graph to identify an event in your sensor data. Auto mode uses a segmentation algorithm to automatically detect events based on customizable parameters. For this tutorial, we are going to use a segmentation algorithm in Auto mode. The segmentation algorithms we use for determining events will also be compiled as part of the firmware so that the on-device model will be fed the same segments of data it was trained against.

    We have already created a segmentation algorithm for this project based on the dataset we have collected so far. To perform automatic event detection on newly captured data file:

    1. Select the file from the Project Explorer
    2. Click on the Detect Segments button
    3. The segmentation algorithm will be run against the capture and the segments it finds will be added to the file

    Building a TinyML Model

    We are going to use notebook and follow along to train your model.

    Offline Model Validation

    After saving the model, go to the

  • Go to Test Model Tab
  • Select your model from the Model Name dropdown
  • Select one or more of the capture files by clicking on them
  • Click the Compute Accuracy Button to classify the captures using the selected model
  • Flashing the Firmware

    After downloading the library, we will build and upload the firmware to the Nano 33 BLE Sense. For this step, you will need the with the

  • Switch to the Platform I/O extension tab in VS Code
  • Connect your Nano 33 BLE Sense to your computer using the micro USB cable.
  • Click Upload and Monitor under the nano33ble_with_tensorflow in the PlatformI/O tab.
    or the in our documentation. Follow us on with us, we love hearing about all of the amazing TinyML applications the community is working on!

    Vollständiger Original-Bericht
    Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf blog.tensorflow.org.
    ↗ Original-Artikel auf blog.tensorflow.org lesen
    Wie bewertest du diesen Beitrag?
    1 Klick Feedback
    Teilen mit Netzwerk & Team:

    Community-Analysen & Experten-Meinungen 0

    Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
    Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
    Community Pulse: Relevanz-Einschätzung
    1 Klick Experten-Votum
    🔴 Akute Relevanz 0%
    🟡 In Evaluierung 0%
    🟢 Keine Auswirkung 0%
    Spannende Innovation 0%
    Verwandte Story-Cluster & Quellen (Vektor-KI)
    Port 8095 Engine
    1 Quelle
    Hackers Just Poisoned the Rust Supply Chain | Threat Wire
    1 Quelle
    Hackers Found a Way Into Humanoid Robots | Threat Wire
    1 Quelle
    Bits und so #1021 (Passwort für Laufwerk)
  • Ähnliche Beiträge
    🔍 Verwandte News

    Auch interessante Nachrichten Building a TinyML Application with TF Micro and SensiML

    Thematisch verwandte Begriffe: Building, TinyML, Application, with · 6 Treffer

    Laden...

    Videos werden geladen ...

    Laden...

    Beiträge werden geladen ...

    Laden...

    Videos werden geladen ...

    Laden...

    Beiträge werden geladen ...

    Laden...

    Videos werden geladen ...

    Laden...

    Beiträge werden geladen ...

    Laden...

    Videos werden geladen ...

    Laden...

    Beiträge werden geladen ...

    Laden...

    Videos werden geladen ...