From 6aedc39a9a421cf48000a727f36b4c1495848a1d Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 16 Sep 2023 04:00:07 -0600 Subject: [PATCH] Remove quotes from tensorrt env variable example (#7823) --- docs/docs/configuration/object_detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 10117a504..2c827469b 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -235,7 +235,7 @@ An example `docker-compose.yml` fragment that converts the `yolov4-608` and `yol ```yml frigate: environment: - - YOLO_MODELS="yolov4-608,yolov7x-640" + - YOLO_MODELS=yolov4-608,yolov7x-640 - USE_FP16=false ```