diff --git a/src/otx/core/model/detection.py b/src/otx/core/model/detection.py index 1b3dad7861..064811189c 100644 --- a/src/otx/core/model/detection.py +++ b/src/otx/core/model/detection.py @@ -280,7 +280,7 @@ def _export_parameters(self) -> TaskLevelExportParameters: return super()._export_parameters.wrap( model_type="ssd", task_type="detection", - confidence_threshold=max(0.35, self.hparams.get("best_confidence_threshold", 0.35)), + confidence_threshold=self.hparams.get("best_confidence_threshold", None), iou_threshold=0.5, tile_config=self.tile_config if self.tile_config.enable_tiler else None, )