This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 1.0.18 instead.
Reason given by maintainers: Please use edge-impulse-linux instead
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:
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.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edgeimpulse-0.0.7.tar.gz.
File metadata
- Download URL: edgeimpulse-0.0.7.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5697143ec267100bb84723921eb9578bb4b0c31b2e5b0869d713f3b37b167122
|
|
| MD5 |
d7438b29a9ade92d53bf9e9a42bf370a
|
|
| BLAKE2b-256 |
39d32cc1de4c5b605f61e198bee7cc831dc5a0fe19bd4f5a7b22e818569cbdc6
|
File details
Details for the file edgeimpulse-0.0.7-py3-none-any.whl.
File metadata
- Download URL: edgeimpulse-0.0.7-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.8+
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16e2db733b9176c4f8c4d13be9b7e209395d45ef6c8c07414b0cc79dc33e6667
|
|
| MD5 |
2bcb547437a71e5a5855a1e2fe93b3ad
|
|
| BLAKE2b-256 |
b65af74022646e82790c221126ce7f639f28e5a0bb463766b0f1ebdaa65bdabc
|