Skip to main content

Python runner for real-time ML classification

Reason this release was yanked:

Please use edge-impulse-linux instead

Project description

Edge Impulse Linux SDK for Python

This library lets you run machine learning models and collect sensor data on Linux machines using Python. This SDK is part of Edge Impulse where we enable developers to create the next generation of intelligent device solutions with embedded machine learning. Start here to learn more and train your first model.

pip install edgeimpulse

runner.py

Implements the ImpulseRunner

use:

from edgeimpulse.runner import ImpulseRunner
import signal
runner = None

def signal_handler(sig, frame):
    print('Interrupted')
    if (runner):
        runner.stop()
    sys.exit(0)

signal.signal(signal.SIGINT, signal_handler)

...
runner = ImpulseRunner(modelfile)
model_info = runner.init()
...
res = runner.classify(features[:window_size].tolist())

Classify from microphone in real-time

from edgeimpulse.audio import AudioImpulseRunner
...
runner = AudioImpulseRunner('/path/to/your/model')
runner.init()
classifier = runner.classify()
for res in classifier:
    print(res)

Classify from camera in real-time

from edgeimpulse.camera import CameraImpulseRunner
import cv2
...
runner = CameraImpulseRunner('/path/to/your/model')
runner.init()
classifier = runner.classify()
for res, img in classifier:
import cv2
    print(res)
    cv2.imshow('frame',img)

examples:

/camera
/microphone

camera

Classifies frames grabbed directly from the webcam.

microphone

Classifies audio acquired directly from the audio interface.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edgeimpulse-0.0.5.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

edgeimpulse-0.0.5-py3-none-any.whl (10.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page