scailable / sclblonnx

Scailable ONNX python tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sclblonnx

PyPI Release

The sclblonnx package provides a high level API to construct and alter ONNX graphs.

The basic usage is as follows:

import sclblonnx as so

g = so.empty_graph()
n1 = so.node('Add', inputs=['x1', 'x2'], outputs=['sum'])
g = so.add_node(g, n1)
# etc.

Please see the examples/ folder in this repo for examples.

About

Scailable ONNX python tools

License:MIT License


Languages

Language:Python 100.0%