Files
2023-04-06 00:37:59 -04:00

8 lines
256 B
Python

from typing import Callable
class ModelWrapper(object):
def __init__(self, model_func:Callable, model_preprocessor:Callable, name:str):
self.model_func = model_func
self.model_preprocessor = model_preprocessor
self.name = name