Update openvino to 2024.3 (#13861)

This commit is contained in:
Nicolas Mowen
2024-09-20 16:20:11 -06:00
committed by GitHub
parent 176af55e8c
commit 61a4a4bc2f
4 changed files with 12 additions and 12 deletions

View File

@@ -30,12 +30,6 @@ class OvDetector(DetectionApi):
self.h = detector_config.model.height
self.w = detector_config.model.width
if detector_config.device == "AUTO":
logger.warning(
"OpenVINO AUTO device type is not currently supported. Attempting to use GPU instead."
)
detector_config.device = "GPU"
if not os.path.isfile(detector_config.model.path):
logger.error(f"OpenVino model file {detector_config.model.path} not found.")
raise FileNotFoundError