3ece550
1
2
3
4
5
6
from abc import ABC, abstractmethod class BaseModel(ABC): @abstractmethod def predict(self, text: str) -> str: pass