diff --git a/docs/get_started.md b/docs/get_started.md index 520a06fd681..1953a8c1393 100644 --- a/docs/get_started.md +++ b/docs/get_started.md @@ -94,10 +94,10 @@ Model Compression and Quantization Use OpenVINO’s model compression tools to reduce your model’s latency and memory footprint while maintaining good accuracy. -* Tutorial - `OpenVINO Post-Training Model Quantization `__ -* Tutorial - `Quantization-Aware Training in TensorFlow with OpenVINO NNCF `__ -* Tutorial - `Quantization-Aware Training in PyTorch with NNCF `__ -* :doc:`Model Optimization Guide ` +* Tutorial - `OpenVINO Post-Training Model Quantization `__ +* Tutorial - `Quantization-Aware Training in TensorFlow with OpenVINO NNCF `__ +* Tutorial - `Quantization-Aware Training in PyTorch with NNCF `__ +* `Model Optimization Guide `__ Automated Device Configuration ------------------------------ diff --git a/docs/nbdoc/consts.py b/docs/nbdoc/consts.py index d6157f7c84d..5681153335f 100644 --- a/docs/nbdoc/consts.py +++ b/docs/nbdoc/consts.py @@ -8,7 +8,7 @@ repo_owner = "openvinotoolkit" repo_name = "openvino_notebooks" -artifacts_link = "http://repository.toolbox.iotg.sclab.intel.com/projects/ov-notebook/0.1.0-latest/20230424220807/dist/rst_files/" +artifacts_link = "http://repository.toolbox.iotg.sclab.intel.com/projects/ov-notebook/0.1.0-latest/20230517220809/dist/rst_files/" blacklisted_extensions = ['.xml', '.bin'] diff --git a/docs/tutorials.md b/docs/tutorials.md index c18b89974ef..af80d222d2e 100644 --- a/docs/tutorials.md +++ b/docs/tutorials.md @@ -119,7 +119,9 @@ Tutorials that explain how to optimize and quantize models with OpenVINO tools. +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ | `106-auto-device `__ |br| |n106| | Demonstrates how to use AUTO Device | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ - | `107-speech-recognition-quantization `__ | Optimize and quantize a pre-trained Wav2Vec2 speech model | + | `107-speech-recognition-quantization `__ | Optimize and quantize a pre-trained Data2Vec speech model | + +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ + | `107-speech-recognition-quantization `__ | Optimize and quantize a pre-trained Wav2Vec2 speech model | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ | `108-gpu-device `__ | Working with GPUs in OpenVINO™ | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ @@ -127,7 +129,7 @@ Tutorials that explain how to optimize and quantize models with OpenVINO tools. +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ | `110-ct-segmentation-quantize `__ |br| |n110| | Quantize a kidney segmentation model and show live inference | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ - | `111-detection-quantization `__ |br| |n111| | Quantize an object detection model | + | `111-yolov5-quantization-migration `__ | Migrate YOLOv5 POT API based quantization pipeline on Neural Network Compression Framework (NNCF) | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ | `112-pytorch-post-training-quantization-nncf `__ | Use Neural Network Compression Framework (NNCF) to quantize PyTorch model in post-training mode (without model fine-tuning) | +------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+ @@ -203,7 +205,7 @@ Demos that demonstrate inference on a particular model. +-------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------+ | `222-vision-image-colorization `__ |br| |n222| | Use pre-trained models to colorize black & white images using OpenVINO | |n222-img1| | +-------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------+ - | `223-gpt2-text-prediction `__ | Use GPT-2 to perform text prediction on an input sequence | |n223-img1| | + | `223-text-prediction `__ | Use pretrained models to perform text prediction on an input sequence | |n223-img1| | +-------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------+ | `224-3D-segmentation-point-clouds `__ | Process point cloud data and run 3D Part Segmentation with OpenVINO | |n224-img1| | +-------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------+ @@ -492,8 +494,6 @@ Made with `contributors-img `__. :target: https://mybinder.org/v2/gh/openvinotoolkit/openvino_notebooks/HEAD?labpath=notebooks%2F106-auto-device%2F106-auto-device.ipynb .. |n110| image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/openvinotoolkit/openvino_notebooks/HEAD?filepath=notebooks%2F110-ct-segmentation-quantize%2F110-ct-scan-live-inference.ipynb -.. |n111| image:: https://mybinder.org/badge_logo.svg - :target: https://mybinder.org/v2/gh/openvinotoolkit/openvino_notebooks/HEAD?filepath=notebooks%2F111-detection-quantization%2F111-detection-quantization.ipynb .. |n113| image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/openvinotoolkit/openvino_notebooks/HEAD?labpath=notebooks%2F113-image-classification-quantization%2F113-image-classification-quantization.ipynb .. |n114| image:: https://mybinder.org/badge_logo.svg diff --git a/tools/pot/README.md b/tools/pot/README.md index b45244f0c32..9bd8ade59e0 100644 --- a/tools/pot/README.md +++ b/tools/pot/README.md @@ -43,7 +43,7 @@ OpenVINO provides several examples to demonstrate the POT optimization workflow: * [Quantization of Image Classification model](https://docs.openvino.ai/latest/pot_configs_examples_README.html) * API tutorials: * [Quantization of Image Classification model](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/301-tensorflow-training-openvino) - * [Quantization of Object Detection model from Model Zoo](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/111-detection-quantization) + * [Quantization of Object Detection model from Model Zoo](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/111-yolov5-quantization-migration) * [Quantization of Segmentation model for medical data](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/110-ct-segmentation-quantize) * [Quantization of BERT for Text Classification](https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/105-language-quantize-bert) * API examples: diff --git a/tools/pot/docs/DefaultQuantizationUsage.md b/tools/pot/docs/DefaultQuantizationUsage.md index f61ed4eb943..9a3d39e81e1 100644 --- a/tools/pot/docs/DefaultQuantizationUsage.md +++ b/tools/pot/docs/DefaultQuantizationUsage.md @@ -177,7 +177,7 @@ Examples * Tutorials: * `Quantization of Image Classification model `__ - * `Quantization of Object Detection model from Model Zoo `__ + * `Quantization of Object Detection model from Model Zoo `__ * `Quantization of Segmentation model for medical data `__ * `Quantization of BERT for Text Classification `__ diff --git a/tools/pot/docs/Introduction.md b/tools/pot/docs/Introduction.md index cb9c479a360..82c8f9a7a1e 100644 --- a/tools/pot/docs/Introduction.md +++ b/tools/pot/docs/Introduction.md @@ -39,10 +39,8 @@ try using :doc:`Quantization-aware Training ` to increase its | **Post-Training Quantization Quick Start Examples:** | Try out these interactive Jupyter Notebook examples to learn the POT API and see post-training quantization in action: -* `Quantization of Image Classification Models with POT `__. -* `Object Detection Quantization with POT `__. - - +* `Quantization of Image Classification Models with POT `__. +* `Object Detection Quantization with POT `__. Quantizing Models with POT ####################################### diff --git a/tools/pot/openvino/tools/pot/algorithms/quantization/default/README.md b/tools/pot/openvino/tools/pot/algorithms/quantization/default/README.md index d1f81a47200..7047ef67131 100644 --- a/tools/pot/openvino/tools/pot/algorithms/quantization/default/README.md +++ b/tools/pot/openvino/tools/pot/algorithms/quantization/default/README.md @@ -127,7 +127,7 @@ Additional Resources Tutorials: * `Quantization of Image Classification model `__ -* `Quantization of Object Detection model from Model Zoo `__ +* `Quantization of Object Detection model from Model Zoo `__ * `Quantization of Segmentation model for medical data `__ * `Quantization of BERT for Text Classification `__ diff --git a/tools/pot/openvino/tools/pot/api/samples/README.md b/tools/pot/openvino/tools/pot/api/samples/README.md index 1b521552c85..ac4f6a0fbce 100644 --- a/tools/pot/openvino/tools/pot/api/samples/README.md +++ b/tools/pot/openvino/tools/pot/api/samples/README.md @@ -68,7 +68,7 @@ See the tutorials #################### * `Quantization of Image Classification model `__ -* `Quantization of Object Detection model from Model Zoo `__ +* `Quantization of Object Detection model from Model Zoo `__ * `Quantization of Segmentation model for medical data `__ * `Quantization of BERT for Text Classification `__