2022-03-25 18:18:17 +01:00

11 lines
184 B
Python

import abc
class EstimatorAdapter(abc.ABC):
def __init__(self, estimator):
self.estimator = estimator
@abc.abstractmethod
def predict(self, batch):
pass