Hide keyboard shortcuts

Hot-keys on this page

r m x p   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""" 

6 

7 

8class OperatorSchema: 

9 """ 

10 Defines a schema for operators added in this package 

11 such as @see cl TreeEnsembleRegressorDouble. 

12 """ 

13 

14 def __init__(self, name): 

15 self.name = name 

16 self.domain = 'mlprodict'