From 556c1c847c5e4cb07f52b3731da125ffbcd45d47 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 15 Sep 2023 08:03:40 -0600 Subject: [PATCH] Remove quotes from tensorrt env variable example --- 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 ```