HRTx / models /base.py
d0r1h
add app files
83c00db
raw
history blame contribute delete
163 Bytes
from abc import ABC, abstractmethod
from PIL import Image
class OCRModel(ABC):
@abstractmethod
def predict(self, image: Image.Image) -> str:
pass