From a62cdab53a2f487e292a257fa82d6ea5704bb10e Mon Sep 17 00:00:00 2001 From: Abirami Vina Date: Wed, 20 Mar 2024 10:42:41 +0530 Subject: [PATCH] Updating a typo on paddlepaddle.md (#9108) Co-authored-by: Glenn Jocher --- docs/en/integrations/paddlepaddle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/integrations/paddlepaddle.md b/docs/en/integrations/paddlepaddle.md index 4502b128..f41116fb 100644 --- a/docs/en/integrations/paddlepaddle.md +++ b/docs/en/integrations/paddlepaddle.md @@ -80,7 +80,7 @@ Before diving into the usage instructions, it's important to note that while all model = YOLO('yolov8n.pt') # Export the model to PaddlePaddle format - model.export(format=''paddle'') # creates '/yolov8n_paddle_model' + model.export(format='paddle') # creates '/yolov8n_paddle_model' # Load the exported PaddlePaddle model paddle_model = YOLO('./yolov8n_paddle_model')