From 7568c1da32654652c5713db097f719a9f9ae4875 Mon Sep 17 00:00:00 2001 From: GaryHuang-ASUS Date: Wed, 17 Sep 2025 11:14:16 +0800 Subject: [PATCH] [Update] update ModelType to ssd --- frigate/detectors/plugins/synap1680.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):