module onnxrt.ops#

Short summary#

module mlprodict.onnxrt.ops

Loads runtime operator.

source on GitHub

Functions#

function

truncated documentation

load_op

Sets up a class for a specific ONNX operator.

Documentation#

Loads runtime operator.

source on GitHub

mlprodict.onnxrt.ops.load_op(onnx_node, desc=None, options=None, variables=None, dtype=None, runtime=None)#

Sets up a class for a specific ONNX operator.

Parameters:
  • onnx_nodeonnx node

  • desc – internal representation

  • options – runtime options

  • variables – registered variables created by previous operators

  • dtype – float computational type

  • runtime – runtime

Returns:

runtime class

source on GitHub