Summary of onnx API

This section gathers many functions or classes from onnx used when generated ONNX files from machine learned models. Most of the examples are executed during the generation of the documenation with this version of onnx.

onnx.defs.onnx_opset_version() int[source]

<<<

from onnx import __version__
from onnx.defs import onnx_opset_version
print("onnx", __version__, "opset", onnx_opset_version())

>>>

    onnx 1.11.0rc2 opset 16

Other functions are dispatched accress following sections.