From f6b47e73f85f9c3f84160546c5efe6c1a92add1d Mon Sep 17 00:00:00 2001 From: Konstantin Gulin <66528950+KSGulin@users.noreply.github.com> Date: Thu, 1 Jun 2023 13:21:14 +0100 Subject: [PATCH] YOLOv8 docs fix alias reference (#1053) --- src/deepsparse/yolov8/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deepsparse/yolov8/README.md b/src/deepsparse/yolov8/README.md index bb2e693bc5..23a231d668 100644 --- a/src/deepsparse/yolov8/README.md +++ b/src/deepsparse/yolov8/README.md @@ -41,7 +41,7 @@ For more information refer to the [appropriate YOLOv8 integration documentation After training your model with `SparseML`, locate the `.pt` file for the model you'd like to export and run the `SparseML` integrated YOLOv8 ONNX export script below. ```bash -sparseml.yolov8.export_onnx \ +sparseml.ultralytics.export_onnx \ --weights path/to/your/model \ --dynamic #Allows for dynamic input shape ```