2022-03-25 11:23:07 +01:00

14 lines
255 B
Python

import abc
class Model(abc.ABC):
def __init__(self, estimator):
self.__estimator = estimator
@property
def estimator(self):
return self.__estimator
def predict(self, batch):
return self.estimator.predict(batch)