Skip to content

Commit d70f2f5

Browse files
authored
Merge branch 'master' into master
2 parents 725c474 + 82db316 commit d70f2f5

File tree

638 files changed

+426
-136045
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

638 files changed

+426
-136045
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ OpenVINO supports the CPU, GPU, and NPU [devices](https://docs.openvino.ai/2025/
102102

103103
Get started with the OpenVINO GenAI [installation](https://docs.openvino.ai/2025/get-started/install-openvino/install-openvino-genai.html) and refer to the [detailed guide](https://docs.openvino.ai/2025/openvino-workflow-generative/generative-inference.html) to explore the capabilities of Generative AI using OpenVINO.
104104

105-
Learn how to run LLMs and GenAI with [Samples](https://github.com/openvinotoolkit/openvino.genai/tree/master/samples) in the [OpenVINO™ GenAI repo](https://github.com/openvinotoolkit/openvino.genai). See GenAI in action with Jupyter notebooks: [LLM-powered Chatbot](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/llm-chatbot/README.md) and [LLM Instruction-following pipeline](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/llm-question-answering/README.md).
105+
Learn how to run LLMs and GenAI with [Samples](https://github.com/openvinotoolkit/openvino.genai/tree/master/samples) in the [OpenVINO™ GenAI repo](https://github.com/openvinotoolkit/openvino.genai). See GenAI in action with Jupyter notebooks: [LLM-powered Chatbot](https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/llm-chatbot) and [LLM Instruction-following pipeline](https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/llm-question-answering).
106106

107107
## Documentation
108108

docs/CMakeLists.txt

-9
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,6 @@ function(build_docs)
7070
list(APPEND commands COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --green "FINISHED preprocessing OpenVINO Python API")
7171
endif()
7272

73-
if(${ENABLE_NOTEBOOKS})
74-
set(NBDOC_SCRIPT "${DOCS_SOURCE_DIR}/nbdoc/nbdoc.py")
75-
list(PREPEND commands COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --green "STARTED preprocessing OpenVINO notebooks")
76-
list(PREPEND commands
77-
COMMAND ${Python3_EXECUTABLE} "${NBDOC_SCRIPT}" "${DOCS_SOURCE_DIR}/notebooks" "${SPHINX_SOURCE_DIR}/notebooks"
78-
)
79-
list(PREPEND commands COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --green "FINISHED preprocessing OpenVINO notebooks")
80-
endif()
81-
8273
if(${ENABLE_OVMS})
8374
list(APPEND commands COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --green "STARTED preprocessing OVMS")
8475
list(APPEND commands COMMAND ${Python3_EXECUTABLE} ${FILE_HELPER_SCRIPT}

docs/articles_en/about-openvino/openvino-ecosystem/openvino-integrations.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OpenVINO™ Integrations
2727
.. grid-item::
2828

2929
* :doc:`Run inference with HuggingFace and Optimum Intel <../../openvino-workflow-generative/inference-with-optimum-intel>`
30-
* `A notebook example: llm-chatbot <https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/254-llm-chatbot>`__
30+
* `A notebook example: llm-chatbot <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/llm-chatbot>`__
3131
* `Hugging Face Inference documentation <https://huggingface.co/docs/optimum/main/intel/openvino/inference>`__
3232
* `Hugging Face Compression documentation <https://huggingface.co/docs/optimum/main/intel/openvino/optimization>`__
3333
* `Hugging Face Reference Documentation <https://huggingface.co/docs/optimum/main/intel/openvino/reference>`__

docs/articles_en/get-started.rst

+11-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ GET STARTED
2121
<link rel="stylesheet" type="text/css" href="_static/css/getstarted_style.css">
2222

2323
<p id="GSG_introtext">Welcome to OpenVINO! This guide introduces installation and learning materials for Intel® Distribution of OpenVINO™ toolkit. The guide walks through the following steps:<br />
24-
<a href="notebooks/vision-monodepth-with-output.html" >Quick Start Example</a>
24+
<a href="https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth" >Quick Start Example</a>
2525
<a href="get-started/install-openvino.html" >Install OpenVINO</a>
2626
<a href="#learn-openvino" >Learn OpenVINO</a>
2727
</p>
@@ -40,7 +40,8 @@ For a quick reference, check out
4040
.. image:: https://user-images.githubusercontent.com/15709723/127752390-f6aa371f-31b5-4846-84b9-18dd4f662406.gif
4141
:width: 400
4242

43-
Try out OpenVINO's capabilities with this `quick start example <notebooks/vision-monodepth-with-output.html>`__ that estimates depth in a scene using an OpenVINO monodepth model to quickly see how to load a model, prepare an image, inference the image, and display the result.
43+
Try out OpenVINO's capabilities with this `quick start example <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth>`__
44+
that estimates depth in a scene using an OpenVINO monodepth model to quickly see how to load a model, prepare an image, inference the image, and display the result.
4445

4546
.. _install-openvino-gsg:
4647

@@ -70,10 +71,12 @@ Interactive Tutorials - Jupyter Notebooks
7071

7172
Start with :doc:`interactive Python <get-started/learn-openvino/interactive-tutorials-python>` that show the basics of model inference, the OpenVINO API, how to convert models to OpenVINO format, and more.
7273

73-
* `Hello Image Classification <notebooks/hello-world-with-output.html>`__ - Load an image classification model in OpenVINO and use it to apply a label to an image
74-
* `OpenVINO Runtime API Tutorial <notebooks/openvino-api-with-output.html>`__ - Learn the basic Python API for working with models in OpenVINO
75-
* `Convert TensorFlow Models to OpenVINO <notebooks/tensorflow-classification-to-openvino-with-output.html>`__
76-
* `Convert PyTorch Models to OpenVINO <notebooks/pytorch-onnx-to-openvino-with-output.html>`__
74+
* `Hello Image Classification <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/hello-world>`__
75+
- Load an image classification model in OpenVINO and use it to apply a label to an image
76+
* `OpenVINO Runtime API Tutorial <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/openvino-api>`__
77+
- Learn the basic Python API for working with models in OpenVINO
78+
* `Convert TensorFlow Models to OpenVINO <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/tensorflow-classification-to-openvino>`__
79+
* `Convert PyTorch Models to OpenVINO <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/pytorch-to-openvino/pytorch-onnx-to-openvino.ipynb>`__
7780

7881
.. _code-samples:
7982

@@ -101,8 +104,8 @@ Model Compression and Quantization
101104

102105
Use OpenVINO’s model compression tools to reduce your model’s latency and memory footprint while maintaining good accuracy.
103106

104-
* Tutorial - `Quantization-Aware Training in TensorFlow with OpenVINO NNCF <notebooks/tensorflow-quantization-aware-training-with-output>`__
105-
* Tutorial - `Quantization-Aware Training in PyTorch with NNCF <notebooks/pytorch-quantization-aware-training-with-output>`__
107+
* Tutorial - `Quantization-Aware Training in TensorFlow with OpenVINO NNCF <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/tensorflow-quantization-aware-training>`__
108+
* Tutorial - `Quantization-Aware Training in PyTorch with NNCF <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/pytorch-quantization-aware-training>`__
106109
* :doc:`Model Optimization Guide <openvino-workflow/model-optimization>`
107110

108111
Automated Device Configuration

docs/articles_en/get-started/install-openvino/install-openvino-archive-linux.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -218,17 +218,17 @@ Learn more about how to integrate a model in OpenVINO applications by trying out
218218
.. tab-item:: Get started with Python
219219
:sync: get-started-py
220220

221-
Try the `Python Quick Start Example <../../notebooks/vision-monodepth-with-output.html>`__
221+
Try the `Python Quick Start Example <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth>`__
222222
to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside your web browser.
223223

224224
.. image:: https://user-images.githubusercontent.com/15709723/127752390-f6aa371f-31b5-4846-84b9-18dd4f662406.gif
225225
:width: 400
226226

227227
Visit the :doc:`Tutorials <../../../get-started/learn-openvino/interactive-tutorials-python>` page for more Jupyter Notebooks to get you started with OpenVINO, such as:
228228

229-
* `OpenVINO Python API Tutorial <../../notebooks/openvino-api-with-output.html>`__
230-
* `Basic image classification program with Hello Image Classification <../../notebooks/hello-world-with-output.html>`__
231-
* `Convert a PyTorch model and use it for image background removal <../../notebooks/vision-background-removal-with-output.html>`__
229+
* `OpenVINO Python API Tutorial <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/openvino-api>`__
230+
* `Basic image classification program with Hello Image Classification <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/hello-world>`__
231+
* `Convert a PyTorch model and use it for image background removal <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-background-removal>`__
232232

233233

234234
.. tab-item:: Get started with C++

docs/articles_en/get-started/install-openvino/install-openvino-archive-macos.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -140,16 +140,16 @@ Now that you've installed OpenVINO Runtime, you're ready to run your own machine
140140
.. tab-item:: Get started with Python
141141
:sync: get-started-py
142142

143-
Try the `Python Quick Start Example <../../notebooks/vision-monodepth-with-output.html>`__ to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside your web browser.
143+
Try the `Python Quick Start Example <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth>`__ to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside your web browser.
144144

145145
.. image:: https://user-images.githubusercontent.com/15709723/127752390-f6aa371f-31b5-4846-84b9-18dd4f662406.gif
146146
:width: 400
147147

148148
Visit the :doc:`Tutorials <../../../get-started/learn-openvino/interactive-tutorials-python>` page for more Jupyter Notebooks to get you started with OpenVINO, such as:
149149

150-
* `OpenVINO Python API Tutorial <../../notebooks/openvino-api-with-output.html>`__
151-
* `Basic image classification program with Hello Image Classification <../../notebooks/hello-world-with-output.html>`__
152-
* `Convert a PyTorch model and use it for image background removal <../../notebooks/vision-background-removal-with-output.html>`__
150+
* `OpenVINO Python API Tutorial <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/openvino-api>`__
151+
* `Basic image classification program with Hello Image Classification <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/hello-world>`__
152+
* `Convert a PyTorch model and use it for image background removal <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-background-removal>`__
153153

154154
.. tab-item:: Get started with C++
155155
:sync: get-started-cpp

docs/articles_en/get-started/install-openvino/install-openvino-archive-windows.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,16 @@ Now that you've installed OpenVINO Runtime, you're ready to run your own machine
156156
.. tab-item:: Get started with Python
157157
:sync: get-started-py
158158

159-
Try the `Python Quick Start Example <../../notebooks/vision-monodepth-with-output.html>`__ to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside your web browser.
159+
Try the `Python Quick Start Example <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth>`__ to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside your web browser.
160160

161161
.. image:: https://user-images.githubusercontent.com/15709723/127752390-f6aa371f-31b5-4846-84b9-18dd4f662406.gif
162162
:width: 400
163163

164164
Visit the :doc:`Tutorials <../../../get-started/learn-openvino/interactive-tutorials-python>` page for more Jupyter Notebooks to get you started with OpenVINO, such as:
165165

166-
* `OpenVINO Python API Tutorial <../../notebooks/openvino-api-with-output.html>`__
167-
* `Basic image classification program with Hello Image Classification <../../notebooks/hello-world-with-output.html>`__
168-
* `Convert a PyTorch model and use it for image background removal <../../notebooks/vision-background-removal-with-output.html>`__
166+
* `OpenVINO Python API Tutorial <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/openvino-api>`__
167+
* `Basic image classification program with Hello Image Classification <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/hello-world>`__
168+
* `Convert a PyTorch model and use it for image background removal <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-background-removal>`__
169169

170170
.. tab-item:: Get started with C++
171171
:sync: get-started-cpp

docs/articles_en/get-started/install-openvino/install-openvino-genai.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ and returns the generated content. For a quickstart guide, refer to the
99
:doc:`GenAI API Guide <../../openvino-workflow-generative/inference-with-genai>`.
1010

1111
To see OpenVINO GenAI in action, check these Jupyter notebooks:
12-
`LLM-powered Chatbot <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/llm-chatbot/README.md>`__
12+
`LLM-powered Chatbot <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/llm-chatbot>`__
1313
and
14-
`LLM Instruction-following pipeline <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/llm-question-answering/README.md>`__.
14+
`LLM Instruction-following pipeline <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/llm-question-answering>`__.
1515

1616
OpenVINO GenAI is available for installation via PyPI and Archive distributions.
1717
A `detailed guide <https://github.com/openvinotoolkit/openvino.genai/blob/releases/2025/0/src/docs/BUILD.md>`__

docs/articles_en/get-started/install-openvino/install-openvino-pip.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Use the following command:
8484
Step 4. Install the Package
8585
+++++++++++++++++++++++++++
8686

87-
Use the following command to install OpenVINO Base or OpenVINO GenAI package:
87+
Use the following command to install either the base or GenAI OpenVINO package:
8888

8989
.. code-block:: python
9090
@@ -141,7 +141,7 @@ the following tutorials.
141141
.. image:: https://user-images.githubusercontent.com/15709723/127752390-f6aa371f-31b5-4846-84b9-18dd4f662406.gif
142142
:width: 400
143143

144-
Try the `Python Quick Start Example <https://docs.openvino.ai/2025/notebooks/vision-monodepth-with-output.html>`__
144+
Try the `Python Quick Start Example <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-monodepth>`__
145145
to estimate depth in a scene using an OpenVINO monodepth model in a Jupyter Notebook inside
146146
your web browser.
147147

@@ -152,9 +152,9 @@ Get started with Python
152152
Visit the :doc:`Tutorials <../../../get-started/learn-openvino/interactive-tutorials-python>` page for more
153153
Jupyter Notebooks to get you started with OpenVINO, such as:
154154

155-
* `OpenVINO Python API Tutorial <https://docs.openvino.ai/2025/notebooks/openvino-api-with-output.html>`__
156-
* `Basic image classification program with Hello Image Classification <https://docs.openvino.ai/2025/notebooks/hello-world-with-output.html>`__
157-
* `Convert a PyTorch model and use it for image background removal <https://docs.openvino.ai/2025/notebooks/vision-background-removal-with-output.html>`__
155+
* `OpenVINO Python API Tutorial <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/openvino-api>`__
156+
* `Basic image classification program with Hello Image Classification <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/hello-world>`__
157+
* `Convert a PyTorch model and use it for image background removal <https://github.com/openvinotoolkit/openvino_notebooks/tree/latest/notebooks/vision-background-removal>`__
158158

159159

160160

docs/articles_en/get-started/learn-openvino/interactive-tutorials-python.rst

+23-13
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,38 @@ Interactive Tutorials (Python)
1414
:hidden:
1515

1616
interactive-tutorials-python/notebooks-installation
17+
interactive-tutorials-python/run-notebooks
1718

1819

19-
Jupyter notebooks show how to use various OpenVINO features to run optimized deep learning
20-
inference with Python. Notebooks with |binder logo| and |colab logo| buttons can be run in the
21-
browser, no installation required. Just choose a tutorial and click the button.
22-
23-
`Binder <https://mybinder.org/>`__ and `Google Colab <https://colab.research.google.com/>`__
24-
are free online services with limited resources. For the best performance
25-
and more control, you should run the notebooks locally. Follow the
26-
:doc:`Installation Guide <interactive-tutorials-python/notebooks-installation>` in order to get information
27-
on how to run and manage the notebooks on your system.
20+
The tutorials show how to use various OpenVINO Python API features to run
21+
optimized deep learning inference. They are not maintained on this website,
22+
however, you can use the selector below to reach Jupyter notebooks from the
23+
`openvino_notebooks <https://github.com/openvinotoolkit/openvino_notebooks>`__ repository.
2824

2925
.. raw:: html
3026

3127
<script type="module" crossorigin src="https://openvinotoolkit.github.io/openvino_notebooks/assets/embedded.js"></script>
3228
<iframe id="notebooks-selector" src="https://openvinotoolkit.github.io/openvino_notebooks/" style="width: 100%; border: none;" title="OpenVINO™ Notebooks - Jupyter notebook tutorials for OpenVINO™"></iframe>
3329

3430

35-
.. note::
36-
If you have any issues with the notebooks, refer to the **Troubleshooting** and **FAQ**
37-
sections in the :doc:`Installation Guide <interactive-tutorials-python/notebooks-installation>` or start a GitHub
38-
`discussion <https://github.com/openvinotoolkit/openvino_notebooks/discussions>`__.
31+
Notebooks with |binder logo| and |colab logo| buttons can be run in the
32+
browser, no installation required. Just choose a tutorial and click the button.
33+
34+
`Binder <https://mybinder.org/>`__ and `Google Colab <https://colab.research.google.com/>`__
35+
are free online services with limited resources. For the best performance
36+
and more control, you should run the notebooks locally. Follow the
37+
:doc:`Installation Guide <interactive-tutorials-python/notebooks-installation>` in order
38+
to get information on how to run and manage the notebooks on your system.
39+
40+
41+
If you have any issues with the notebooks, refer to the
42+
`Troubleshooting <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/README.md#%EF%B8%8F-troubleshooting>`__
43+
and
44+
`FAQ <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/README.md#-faq>`__
45+
sections in the
46+
`Installation Guide <https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/README.md#-installation-guide>`__
47+
or start a GitHub
48+
`discussion <https://github.com/openvinotoolkit/openvino_notebooks/discussions>`__.
3949

4050

4151
Additional Resources

0 commit comments

Comments
 (0)