Definen processsing function class. It is assumed that the class follows the basic template: ``` class MlModel: def __init__(self): pass def predict(self,input: Dict, parameters: Dict): pass ```
Definen processsing function class.
It is assumed that the class follows the basic template: