From c1a4d2258a71de1e906c82d73a5c393d54f8238c Mon Sep 17 00:00:00 2001 From: Rob Greenberg <100797996+rgreenberg1@users.noreply.github.com> Date: Thu, 25 May 2023 10:56:51 -0400 Subject: [PATCH] Fixed Yolov8 Quantized model link from Drive to Zoo --- 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 8640d6bbff..a20ac1036e 100644 --- a/src/deepsparse/yolov8/README.md +++ b/src/deepsparse/yolov8/README.md @@ -51,7 +51,7 @@ This creates a `model.onnx` file, in the directory of your `weights` (e.g. `runs DeepSparse’s performance can be pushed even further by optimizing the model for inference. DeepSparse is built to take advantage of models that have been optimized with weight pruning and quantization—techniques that dramatically shrink the required compute without dropping accuracy. Through our One-Shot optimization methods, which will be made available in an upcoming product called Sparsify, we have produced YOLOv8s and YOLOv8n ONNX models that have been quantized to INT8 while maintaining at least 99% of the original FP32 mAP@0.5. -This was achieved with just 1024 samples and no back-propagation. You can download the quantized models [here](https://drive.google.com/drive/folders/1vf4Es-8bxhx348TzzfhvljMQUo62XhQ4?usp=sharing). +This was achieved with just 1024 samples and no back-propagation. You can download the quantized models [here](https://sparsezoo.neuralmagic.com/?searchModels=yolov8). ## Deployment Example The following example uses pipelines to run a pruned and quantized YOLOv8 model for inference. As input, the pipeline ingests a list of images and returns for each image the detection boxes in numeric form.