Skip to content

Commit

Permalink
abc
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel.brostrom committed Nov 24, 2023
1 parent b1b667a commit 8cab16b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/detectors/yolo_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ class YoloInterface(ABC):

@abstractmethod
def inference(self, im):
raise NotImplementedError('Subclasses must implement this method.')
pass

@abstractmethod
def postprocess(self, preds):
raise NotImplementedError('Subclasses must implement this method.')
pass

def filter_results(self, i, predictor):
if predictor.tracker_outputs[i].size != 0:
Expand Down

0 comments on commit 8cab16b

Please sign in to comment.