Coverage for mlprodict/onnxrt/ops_cpu/_new_ops.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- encoding: utf-8 -*-
2"""
3@file
4@brief Defines new operators.
5"""
8class OperatorSchema:
9 """
10 Defines a schema for operators added in this package
11 such as @see cl TreeEnsembleRegressorDouble.
12 """
14 def __init__(self, name):
15 self.name = name
16 self.domain = 'mlprodict'