mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 10:06:35 +00:00
7 lines
122 B
Python
7 lines
122 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class Predictor(ABC):
|
|
@abstractmethod
|
|
def predict(self, frame):
|
|
pass
|