Spaces:
Running
Running
from abc import ABC, abstractmethod | |
class DetectionModel(ABC): | |
def detect(self, frame): | |
pass |
from abc import ABC, abstractmethod | |
class DetectionModel(ABC): | |
def detect(self, frame): | |
pass |