diff --git a/frigate/detectors/plugins/synap1680.py b/frigate/detectors/plugins/synap1680.py index f1449d633..5b7982110 100644 --- a/frigate/detectors/plugins/synap1680.py +++ b/frigate/detectors/plugins/synap1680.py @@ -53,7 +53,7 @@ class SynapDetector(DetectionApi): output_tensor_obj = self.network.predict() output = self.detector.process(output_tensor_obj, postprocess_data) - if self.model_type == ModelTypeEnum.yologeneric: + if self.model_type == ModelTypeEnum.ssd: detections = np.zeros((20, 6), np.float32) for i, item in enumerate(output.items):