Spring-0's picture
Synced repo using 'sync_with_huggingface' Github Action
2012550 verified
raw
history blame contribute delete
125 Bytes
from abc import ABC, abstractmethod
class DetectionModel(ABC):
@abstractmethod
def detect(self, frame):
pass