Skip to content

Commit 9a86cbf

Browse files
slyubimthelena-intelRoman Donchenko
authored
PyPi install guides improvements (openvinotoolkit#5756)
* Update for install guides: - Human rights notice - Components descriptions update & console scripts - Extras requirements definition - Change verification step to Model Optimizer call * Update docs/install_guides/pypi-openvino-dev.md Co-authored-by: Helena Kloosterman <helena.kloosterman@intel.com> * Update docs/install_guides/pypi-openvino-dev.md Co-authored-by: Roman Donchenko <roman.donchenko@intel.com> * Update docs/install_guides/pypi-openvino-dev.md Co-authored-by: Roman Donchenko <roman.donchenko@intel.com> * Update docs/install_guides/pypi-openvino-dev.md Co-authored-by: Roman Donchenko <roman.donchenko@intel.com> * Update docs/install_guides/pypi-openvino-dev.md Co-authored-by: Roman Donchenko <roman.donchenko@intel.com> * order * fix grammar * Update according to recommendations from InfoDev * high-quality * Caffe2* * Update document style Add additional verification step * specify Ubuntu version for troubleshooting * Add reference to POT API. Co-authored-by: Helena Kloosterman <helena.kloosterman@intel.com> Co-authored-by: Roman Donchenko <roman.donchenko@intel.com>
1 parent 874c07e commit 9a86cbf

File tree

3 files changed

+54
-26
lines changed

3 files changed

+54
-26
lines changed

docs/install_guides/installing-openvino-pip.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OpenVINO™ toolkit is a comprehensive toolkit for quickly developing applicatio
55
Intel® Distribution of OpenVINO™ Toolkit provides the following packages available for installation through the PyPI repository:
66

77
* Runtime package with the Inference Engine inside: [https://pypi.org/project/openvino/](https://pypi.org/project/openvino/).
8-
* Developers package that includes the runtime package as a dependency, Model Optimizer, Accuracy Checker and Post-Training Optimization Tool: [https://pypi.org/project/openvino-dev](https://pypi.org/project/openvino-dev).
8+
* Developer package that includes the runtime package as a dependency, Model Optimizer and other developer tools: [https://pypi.org/project/openvino-dev](https://pypi.org/project/openvino-dev).
99

1010
## Additional Resources
1111

docs/install_guides/pypi-openvino-dev.md

+44-19
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,25 @@ Copyright © 2018-2021 Intel Corporation
44
“Software Package”) is subject to the terms and conditions of the [software license agreements](https://software.intel.com/content/dam/develop/external/us/en/documents/intel-openvino-license-agreements.pdf) for the Software Package, which may also include notices, disclaimers, or
55
license terms for third party or open source software included in or with the Software Package, and your use indicates your acceptance of all such terms. Please refer to the “third-party-programs.txt” or other similarly-named text file included with the Software Package for additional details.
66

7+
>Intel is committed to the respect of human rights and avoiding complicity in human rights abuses, a policy reflected in the [Intel Global Human Rights Principles](https://www.intel.com/content/www/us/en/policy/policy-human-rights.html). Accordingly, by accessing the Intel material on this platform you agree that you will not use the material in a product or application that causes or contributes to a violation of an internationally recognized human right.
8+
9+
710
## Introduction
811

912
OpenVINO™ toolkit is a comprehensive toolkit for quickly developing applications and solutions that solve a variety of tasks including emulation of human vision, automatic speech recognition, natural language processing, recommendation systems, and many others. Based on latest generations of artificial neural networks, including Convolutional Neural Networks (CNNs), recurrent and attention-based networks, the toolkit extends computer vision and non-vision workloads across Intel® hardware, maximizing performance. It accelerates applications with high-performance, AI and deep learning inference deployed from edge to cloud.
1013

11-
**The Developer Package Includes the Following Components Installed by Default:**
14+
The **developer package** includes the following components installed by default:
15+
16+
| Component | Console Script | Description |
17+
|------------------|---------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
18+
| [Model Optimizer](https://docs.openvinotoolkit.org/latest/openvino_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html) | `mo` |**Model Optimizer** imports, converts, and optimizes models that were trained in popular frameworks to a format usable by Intel tools, especially the Inference Engine. <br>Popular frameworks include Caffe\*, TensorFlow\*, MXNet\*, and ONNX\*. |
19+
| [Benchmark Tool](https://docs.openvinotoolkit.org/latest/openvino_inference_engine_tools_benchmark_tool_README.html)| `benchmark_app` | **Benchmark Application** allows you to estimate deep learning inference performance on supported devices for synchronous and asynchronous modes. |
20+
| [Accuracy Checker](https://docs.openvinotoolkit.org/latest/omz_tools_accuracy_checker.html) and <br> [Annotation Converter](https://docs.openvinotoolkit.org/latest/omz_tools_accuracy_checker_annotation_converters.html) | `accuracy_check` <br> `convert_annotation` |**Accuracy Checker** is a deep learning accuracy validation tool that allows you to collect accuracy metrics against popular datasets. The main advantages of the tool are the flexibility of configuration and an impressive set of supported datasets, preprocessing, postprocessing, and metrics. <br> **Annotation Converter** is a utility for offline conversion of datasets to the format suitable for metric evaluation used in Accuracy Checker. |
21+
| [Post-Training Optimization Tool](https://docs.openvinotoolkit.org/latest/pot_README.html)| `pot` |**Post-Training Optimization Tool** allows you to optimize trained models with advanced capabilities, such as quantization and low-precision optimizations, without the need to retrain or fine-tune models. Optimizations are also available through the [API](https://docs.openvinotoolkit.org/latest/pot_compression_api_README.html). |
22+
| [Model Downloader and other Open Model Zoo tools](https://docs.openvinotoolkit.org/latest/omz_tools_downloader.html)| `omz_downloader` <br> `omz_converter` <br> `omz_quantizer` <br> `omz_info_dumper`| **Model Downloader** is a tool for getting access to the collection of high-quality and extremely fast pre-trained deep learning [public](https://docs.openvinotoolkit.org/latest/omz_models_group_public.html) and [intel](https://docs.openvinotoolkit.org/latest/omz_models_group_intel.html)-trained models. Use these free pre-trained models instead of training your own models to speed up the development and production deployment process. The principle of the tool is as follows: it downloads model files from online sources and, if necessary, patches them with Model Optimizer to make them more usable. A number of additional tools are also provided to automate the process of working with downloaded models:<br> **Model Converter** is a tool for converting the models stored in a format other than the Intermediate Representation (IR) into that format using Model Optimizer. <br> **Model Quantizer** is a tool for automatic quantization of full-precision IR models into low-precision versions using Post-Training Optimization Tool. <br> **Model Information Dumper** is a helper utility for dumping information about the models in a stable machine-readable format.|
1223

13-
| Component | Description |
14-
|-----------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
15-
| [Model Optimizer](https://docs.openvinotoolkit.org/latest/openvino_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html) | This tool imports, converts, and optimizes models that were trained in popular frameworks to a format usable by Intel tools, especially the Inference Engine. <br>Popular frameworks include Caffe\*, TensorFlow\*, MXNet\*, and ONNX\*. |
16-
| Additional Tools | A set of tools to work with your models including [Accuracy Checker utility](https://docs.openvinotoolkit.org/latest/omz_tools_accuracy_checker.html), [Post-Training Optimization Tool](https://docs.openvinotoolkit.org/latest/pot_README.html), [Benchmark Tool](../../inference-engine/samples/benchmark_app/README.md) |
1724

18-
**The Runtime Package Includes the Following Components Installed by Dependency:**
25+
**Developer package** also provides the **runtime package** installed as a dependency. The runtime package includes the following components:
1926

2027
| Component | Description |
2128
|-----------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -78,35 +85,53 @@ python -m pip install --upgrade pip
7885

7986
### Step 4. Install the Package
8087

81-
Run the command below: <br>
88+
To install and configure the components of the development package for working with specific frameworks, use the `pip install openvino-dev[extras]` command, where `extras` is a list of extras from the table below:
89+
90+
| DL Framework | Extra |
91+
| :------------------------------------------------------------------------------- | :-------------------------------|
92+
| [Caffe*](https://caffe.berkeleyvision.org/) | caffe |
93+
| [Caffe2*](https://caffe2.ai/) | caffe2 |
94+
| [Kaldi*](https://kaldi-asr.org/) | kaldi |
95+
| [MXNet*](https://mxnet.apache.org/) | mxnet |
96+
| [ONNX*](https://github.com/microsoft/onnxruntime/) | onnx |
97+
| [PyTorch*](https://pytorch.org/) | pytorch |
98+
| [TensorFlow* 1.x](https://www.tensorflow.org/versions#tensorflow_1) | tensorflow |
99+
| [TensorFlow* 2.x](https://www.tensorflow.org/versions#tensorflow_2) | tensorflow2 |
82100

101+
For example, to install and configure the components for working with TensorFlow 2.x, MXNet and Caffe, use the following command:
83102
```sh
84-
pip install openvino-dev
103+
pip install openvino-dev[tensorflow2,mxnet,caffe]
85104
```
86105

87-
### Step 5. Verify that the Package is Installed
106+
### Step 5. Verify that the Package Is Installed
88107

89-
Run the command below (this may take a few seconds):
90-
```sh
91-
pot -h
92-
```
108+
- To verify that the **developer package** is properly installed, run the command below (this may take a few seconds):
109+
```sh
110+
mo -h
111+
```
112+
You will see the help message for Model Optimizer if installation finished successfully.
93113

94-
You will see the help message for Post-Training Optimization Tool if installation finished successfully.
114+
- To verify that Inference Engine from the **runtime package** is available, run the command below:
115+
```sh
116+
python -c "from openvino.inference_engine import IECore"
117+
```
118+
You will not see any error messages if installation finished successfully.
95119

96120
## Troubleshooting
97121

98-
#### Error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio"
122+
### Error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio"
99123

100124
On Windows* some dependencies may require compilation from source when installing. To resolve this issue, you need to install [Build Tools for Visual Studio* 2019](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019) and repeat package installation.
101125

102-
#### ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
126+
### ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
103127

104-
To resolve missing external dependency on Ubuntu*, execute the following command:
128+
To resolve missing external dependency on Ubuntu* 18.04, execute the following command:
105129
```sh
106130
sudo apt-get install libpython3.7
107131
```
108132

109133
## Additional Resources
110134

111-
- Intel® Distribution of OpenVINO™ toolkit home page: [https://software.intel.com/en-us/openvino-toolkit](https://software.intel.com/en-us/openvino-toolkit)
112-
- OpenVINO™ toolkit online documentation: [https://docs.openvinotoolkit.org](https://docs.openvinotoolkit.org)
135+
- [Intel® Distribution of OpenVINO™ toolkit](https://software.intel.com/en-us/openvino-toolkit)
136+
- [OpenVINO™ toolkit online documentation](https://docs.openvinotoolkit.org)
137+
- [OpenVINO™ Notebooks](https://github.com/openvinotoolkit/openvino_notebooks)

docs/install_guides/pypi-openvino-rt.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Copyright © 2018-2021 Intel Corporation
44
“Software Package”) is subject to the terms and conditions of the [software license agreements](https://software.intel.com/content/dam/develop/external/us/en/documents/intel-openvino-license-agreements.pdf) for the Software Package, which may also include notices, disclaimers, or
55
license terms for third party or open source software included in or with the Software Package, and your use indicates your acceptance of all such terms. Please refer to the “third-party-programs.txt” or other similarly-named text file included with the Software Package for additional details.
66

7+
>Intel is committed to the respect of human rights and avoiding complicity in human rights abuses, a policy reflected in the [Intel Global Human Rights Principles](https://www.intel.com/content/www/us/en/policy/policy-human-rights.html). Accordingly, by accessing the Intel material on this platform you agree that you will not use the material in a product or application that causes or contributes to a violation of an internationally recognized human right.
8+
79
## Introduction
810

911
OpenVINO™ toolkit is a comprehensive toolkit for quickly developing applications and solutions that solve a variety of tasks including emulation of human vision, automatic speech recognition, natural language processing, recommendation systems, and many others. Based on latest generations of artificial neural networks, including Convolutional Neural Networks (CNNs), recurrent and attention-based networks, the toolkit extends computer vision and non-vision workloads across Intel® hardware, maximizing performance. It accelerates applications with high-performance, AI and deep learning inference deployed from edge to cloud.
@@ -13,7 +15,7 @@ The Intel® Distribution of OpenVINO™ toolkit\*:
1315
- Supports heterogeneous execution across Intel® CPU, Intel® Integrated Graphics, Intel® Neural Compute Stick 2, and Intel® Vision Accelerator Design with Intel® Movidius™ VPUs
1416
- Speeds time-to-market via an easy-to-use library of computer vision functions and pre-optimized kernels
1517

16-
**The Runtime Package Includes the Following Components Installed by Default:**
18+
The **runtime package** includes the following components installed by default:
1719

1820
| Component | Description |
1921
|-----------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -77,7 +79,7 @@ Run the command below: <br>
7779
pip install openvino
7880
```
7981

80-
### Step 5. Verify that the Package is Installed
82+
### Step 5. Verify that the Package Is Installed
8183

8284
Run the command below:
8385
```sh
@@ -88,11 +90,11 @@ You will not see any error messages if installation finished successfully.
8890

8991
## Troubleshooting
9092

91-
#### Error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio"
93+
### Error: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio"
9294

9395
On Windows* some dependencies may require compilation from source when installing. To resolve this issue, you need to install [Build Tools for Visual Studio* 2019](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019) and repeat package installation.
9496

95-
#### ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
97+
### ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
9698

9799
To resolve missing external dependency on Ubuntu*, execute the following command:
98100
```sh
@@ -101,6 +103,7 @@ sudo apt-get install libpython3.7
101103

102104
## Additional Resources
103105

104-
- [Intel® Distribution of OpenVINO™ toolkit](https://software.intel.com/en-us/openvino-toolkit).
105-
- [OpenVINO™ toolkit online documentation](https://docs.openvinotoolkit.org).
106+
- [Intel® Distribution of OpenVINO™ toolkit](https://software.intel.com/en-us/openvino-toolkit)
107+
- [OpenVINO™ toolkit online documentation](https://docs.openvinotoolkit.org)
108+
- [OpenVINO™ Notebooks](https://github.com/openvinotoolkit/openvino_notebooks)
106109

0 commit comments

Comments
 (0)