onnx.reference

DefaultNone

class onnx.reference.op_run.DefaultNone[source]

当参数未设置但运算符对其具有默认行为时,参数的默认值。

ReferenceEvaluator

class onnx.reference.ReferenceEvaluator(proto: Any, opsets: dict[str, int] | None = None, functions: list[ReferenceEvaluator | FunctionProto] | None = None, verbose: int = 0, new_ops: list[OpRun] | None = None, optimized: bool = True)[source]

计算ONNX原型(ModelProtoFunctionProtoGraphProtoNodeProto)的输出。

这是ONNX规范的纯Python实现。官方规范和此处的实现之间可能存在不匹配。在这种不匹配的情况下,官方规范优先于此实现。

参数:
  • protoonnx.ModelProtoonnx.GraphProtoonnx.FunctionProtoonnx.NodeProto、文件名或字节

  • verbose – 在执行过程中在标准输出上显示中间结果

  • opsets – 如果protoGraphProto的实例,则必须通过字典定义opsets

  • functions – 已知的onnx函数

  • new_ops – 此运行时可用于测试新算子的实现,new_ops 是一个从 OpRun 派生的类的列表,每个类必须定义静态属性 domain,同一算子可能有多个实现,列表中的第一个实现会被使用。

  • optimized – 一些算子有两个实现,一个对应于算子数学定义的朴素实现,另一个更高效的实现。Conv 算子就是这种情况。朴素版本比使用 Conv = im2col + Gemm 分解的优化版本慢十倍。如果为 True,则所有优化内核都会添加到 new_ops 中,并且如果列表 new_ops 中尚不存在,则会使用它们代替内部实现。

该类将每个节点映射到其关联的实现。当遇到函数的子图时,它会使用此类来执行子图或函数。下面的示例展示了如何使用存储在 model.onnx 文件中的 onnx 模型运行 ReferenceEvaluator

import numpy as np
from onnx.reference import ReferenceEvaluator

X = np.array(...)
sess = ReferenceEvaluator("model.onnx")
results = sess.run(None, {"X": X})
print(results[0])  # display the first result

参数 verbose 可用于显示中间结果。

import numpy as np
from onnx.reference import ReferenceEvaluator

X = np.array(...)
sess = ReferenceEvaluator("model.onnx", verbose=1)
results = sess.run(None, {"X": X})
print(results[0])  # display the first result

该类可以使用 ops 文件夹中任何可用的实现。添加实现需要进行两个更改。第一个是实现本身。任何现有节点都可以用作模板。第二个是在 _op_list.py 文件中添加一行代码,以导入文件并让引用评估器知道它的存在。

此类也可用于测试自定义算子的实现。假设此新算子是来自 custom 域的 InvAlpha。实现必须在一个继承自 OpRun 的类中进行。它还必须定义属性 op_domain。以下是一个计算 \(\\frac{1}{X + \\alpha}\) 的示例。

from onnx.reference.op_run import OpRun

class InvAlpha(OpRun):

    op_domain = "custom"

    def _run(self, x, alpha=None):  # type: ignore
        # None must be the default value, it is automatically
        # replaced by class OpRun with either the default value
        # specified in the NodeProto or an attribute value defined
        # in a `FunctionProto`.
        return (1 / (x + alpha),)

alpha 是一个属性。它可以由 onnx 节点定义,也可以由使用此节点的函数定义。可以安全地假设在输入的同时知道属性。类 ReferenceEvaluator 必须知道此新实现,这可以通过指定参数 new_ops 来完成。

sess = ReferenceEvaluator(onnx_model, new_ops=[InvAlpha])
got = sess.run(None, {"X": x})[0]

可以简单地评估特定的节点。

import numpy as np
from onnx.reference.ops._op_list import Celu

x = np.array([[0, 1], [-1, 2]], dtype=np.float32)
y = Celu.eval(x, alpha=0.5)
print(y)
[[ 0.          1.        ]
 [-0.43233237  2.        ]]

这也可以表示为

import numpy as np
from onnx.reference.ops import load_op

Celu = load_op("", "Celu")  # domain is ""
x = np.array([[0, 1], [-1, 2]], dtype=np.float32)
y = Celu.eval(x, alpha=0.5)
print(y)
[[ 0.          1.        ]
 [-0.43233237  2.        ]]

可以覆盖现有的算子。类名必须相同。对于默认域,无需指定域。但是,默认情况下,类 OpRun 将加载此算子的最新版本。可以通过添加类型为 OpSchema 的静态属性 op_schema 来显式指定。

from onnx.reference.op_run.op_conv import Conv as _Conv

class Conv(_Conv):

    op_schema = instance_of_OpSchema()

    def _run(self, ...):
        ...

An operator may be different in a later opset. In that case,
a new implementation needs to be registered. `Pad_11`, `Pad_18`.
`Pad_11` is the implementation chose for opset in [11, 17].
`Pad_18` is selected for any greater opset. Both classes must be
imported into file `_op_list.py` to register their existence to the
runtime.

An operator may have a reference implementation such as `CastLike`
and still be defined as a function. By default, the reference implementation
is used. This behavior can be changed by adding a class to the list
of overwritten operators. It must inherit from :class:`OpRunExpand`.

::

    from onnx.reference.op_run import OpRunExpand

    class CastLike(OpRunExpand):
        op_domain = ""

    ref = ReferenceEvaluator(model, new_ops=[CastLike])
    # ...

    This mechanism is used in unit test to check the function
    implementation a schema may define.
property input_names

返回输入名称。

property opsets

返回操作集。

property output_names

返回输出名称。

run(output_names, feed_inputs: dict[str, Any], attributes: dict[str, Any] | None = None, intermediate: bool = False) dict[str, Any] | list[Any][source]

执行 onnx 模型。

参数:
  • output_names – 按名称请求的输出,全部输出则为 None

  • feed_inputs – 字典 { 输入名称:输入值 }

  • attributes – 如果实例运行 FunctionProto,则为属性值

  • intermediate – 如果为 True,则函数返回所有结果,最终结果和中间结果都在同一个字典中,如果为 False,则仅在列表中返回最终结果

返回值:

如果 intermediate 为 False,则返回请求的输出列表,否则返回命名结果的字典

OpFunction

class onnx.reference.op_run.OpFunction(onnx_node: NodeProto, run_params: dict[str, Any] | None, impl: Any | None = None, attributes: dict[str, Any] | None = None)[source]

运行自定义函数。

classmethod create(n_inputs: int | None = None, n_outputs: int | None = None, verbose: int = 0, **kwargs: Any) Any

基于给定信息实例化此类。

参数:
  • n_inputs – 输入数量(默认由算子模式定义)

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

property domain: str

返回节点属性domain

classmethod eval(*args: list[Any], n_outputs: int | None = None, verbose: int = 0, **kwargs: Any) Any

评估此算子。

参数:
  • *args – 输入

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

static implicit_inputs(graph: GraphProto) list[str]

返回所有未注册为输入且未由图内节点生成的变量。这些输入是调用此图的上下文图中的一部分。

property input: Iterable[str]

返回节点属性input

classmethod make_node(n_inputs: int | None = None, n_outputs: int | None = None, **kwargs: Any) NodeProto

基于给定信息为该类创建一个ONNX节点。

参数:
  • n_inputs – 输入数量(默认由算子模式定义)

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

方法eval创建一个由方法make_node返回的onnx节点。

import numpy as np
from onnx.reference.ops._op_list import Celu

onnx_node = Celu.make_node(alpha=0.5)
print(onnx_node)
input: "x0"
output: "y0"
op_type: "Celu"
attribute {
  name: "alpha"
  f: 0.5
  type: FLOAT
}
need_context() bool

告诉运行时此节点是否需要上下文(迄今为止生成的所有结果),因为它可能会静默访问其中之一(算子 Scan、If、Loop)。默认答案为False

property output: Iterable[str]

返回节点属性output

run(*args, linked_attributes=None, context=None)

调用方法_run,捕获异常,显示更长的错误消息。

参数:
  • *args – 输入

  • linked_attributes – 如果此属性链接到其所属函数的属性,则使用此属性

  • context – 如果此节点是子图的一部分,则context是一个字典,其中包含此节点可能使用的值

返回值:

结果元组

OpRun

class onnx.reference.op_run.OpRun(onnx_node: NodeProto, run_params: dict[str, Any], schema: Any | None = None)[source]

此子文件夹中所有算子的祖先。

参数:
  • onnx_nodeonnx 节点

  • run_params – 附加参数,例如verboseopsets(如果算子有子图,则可以有多个)、log用于日志记录函数

  • schema – 算子模式

类方法 create(n_inputs: int | None = None, n_outputs: int | None = None, verbose: int = 0, **kwargs: Any) Any[source]

基于给定信息实例化此类。

参数:
  • n_inputs – 输入数量(默认由算子模式定义)

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

属性 domain: str

返回节点属性domain

类方法 eval(*args: list[Any], n_outputs: int | None = None, verbose: int = 0, **kwargs: Any) Any[source]

评估此算子。

参数:
  • *args – 输入

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

静态方法 implicit_inputs(graph: GraphProto) list[str][source]

返回所有未注册为输入且未由图内节点生成的变量。这些输入是调用此图的上下文图中的一部分。

属性 input: Iterable[str]

返回节点属性input

类方法 make_node(n_inputs: int | None = None, n_outputs: int | None = None, **kwargs: Any) NodeProto[source]

基于给定信息为该类创建一个ONNX节点。

参数:
  • n_inputs – 输入数量(默认由算子模式定义)

  • n_outputs – 输出数量(默认由算子模式定义)

  • verbose – 详细程度

  • **kwargs – 节点属性

返回值:

NodeProto

方法eval创建一个由方法make_node返回的onnx节点。

import numpy as np
from onnx.reference.ops._op_list import Celu

onnx_node = Celu.make_node(alpha=0.5)
print(onnx_node)
input: "x0"
output: "y0"
op_type: "Celu"
attribute {
  name: "alpha"
  f: 0.5
  type: FLOAT
}
need_context() bool[source]

告诉运行时此节点是否需要上下文(迄今为止生成的所有结果),因为它可能会静默访问其中之一(算子 Scan、If、Loop)。默认答案为False

属性 output: Iterable[str]

返回节点属性output

run(*args, linked_attributes=None, context=None)[source]

调用方法_run,捕获异常,显示更长的错误消息。

参数:
  • *args – 输入

  • linked_attributes – 如果此属性链接到其所属函数的属性,则使用此属性

  • context – 如果此节点是子图的一部分,则context是一个字典,其中包含此节点可能使用的值

返回值:

结果元组

RuntimeTypeError

onnx.reference.op_run.RuntimeTypeError[source]

当变量的类型意外时引发。

SparseTensor

onnx.reference.op_run.SparseTensor(values: ndarray, indices: ndarray, shape: tuple[int])[source]

稀疏张量的简单表示。它基于 numpy,但不需要 scipy。