ToxiCheck / models /base.py
Tbruand
chore(): nitial commit - project structure
3ece550
raw
history blame contribute delete
132 Bytes
from abc import ABC, abstractmethod
class BaseModel(ABC):
@abstractmethod
def predict(self, text: str) -> str:
pass