From 062c305cd837ea531b7d3a7b1b91a370ac6da6dc Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 22 Sep 2024 08:38:23 -0600 Subject: [PATCH] Remove context file (#13885) --- frigate/detectors/plugins/onnx.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/detectors/plugins/onnx.py b/frigate/detectors/plugins/onnx.py index f690a232f..82e7c4b5f 100644 --- a/frigate/detectors/plugins/onnx.py +++ b/frigate/detectors/plugins/onnx.py @@ -53,11 +53,9 @@ class ONNXDetector(DetectionApi): options.append( { "trt_timing_cache_enable": True, - "trt_timing_cache_path": "/config/model_cache/tensorrt/ort", "trt_engine_cache_enable": True, - "trt_dump_ep_context_model": True, + "trt_timing_cache_path": "/config/model_cache/tensorrt/ort", "trt_engine_cache_path": "/config/model_cache/tensorrt/ort/trt-engines", - "trt_ep_context_file_path": "/config/model_cache/tensorrt/ort", } ) elif provider == "OpenVINOExecutionProvider":