Neural network inference on accelerators simplified
Project description
Please refer to the project's documentation.
What is it
nnio is a light-weight python package for easily running neural networks.
It supports running models on CPU as well as some of the edge devices:
- Google USB Accelerator
- Intel Compute Stick
- Intel integrated GPUs
For each device there exists an own library and a model format. We wrap all those in a single well-defined python package.
Look at this simple example:
import nnio
# Create model and put it on a Google Coral Edge TPU device
model = nnio.EdgeTPUModel(
model_path='path/to/model_quant_edgetpu.tflite',
device='TPU',
)
# Create preprocessor
preproc = nnio.Preprocessing(
resize=(224, 224),
batch_dimension=True,
)
# Preprocess your numpy image
image = preproc(image_rgb)
# Make prediction
class_scores = model(image)
nnio was developed for the Fast Sense X microcomputer. It has six neural accelerators, which are all supported by nnio:
- 3 x Google Coral Edge TPU
- 2 x Intel VPU
- an integrated Intel GPU
More usage examples can be found in the documentation.
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
nnio-0.3.0.tar.gz
(14.5 kB
view details)
File details
Details for the file nnio-0.3.0.tar.gz
.
File metadata
- Download URL: nnio-0.3.0.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 629f4d6848bfe0a68460530214b60d98b491dd4a9f6f6601e98a70434021d83c |
|
MD5 | 59ad879e3a669a292a946c283d27831e |
|
BLAKE2b-256 | 978aa225c417008ecd01a357cb660247cfceebd9a52d52189097c2591be3539b |