openvino/tools
Liubov Talamanova 4564867a44
Update POT tests for OMZ location in openvino/thirdparty (#9171)
* Move OMZ to thirdparty/open_model_zoo

* Improve diagnostic of issues

* Update path to OMZ in the Python wheel setup.py

* Update POT tests for OMZ location in openvino/thirdparty

* fix mo path

Co-authored-by: azhogov <alexander.zhogov@intel.com>
2021-12-20 09:10:39 +03:00
..
benchmark_tool Renamed ov::Function to ov::Model (#9051) 2021-12-10 13:08:38 +03:00
compile_tool [VPUX] Updated config's parser (#7974) 2021-11-03 12:14:13 +03:00
cross_check_tool [Python Tools] Align namespace for cross_check_tool (#7786) 2021-11-03 01:55:27 +03:00
deployment_manager Renamed frontends from *ov_frontend to ov_*_frontend (#9275) 2021-12-18 13:25:42 +03:00
mo [MO]Implement additional shape extraction for TF Placeholder operation (#8817) 2021-12-18 19:55:06 +03:00
openvino_dev Update POT tests for OMZ location in openvino/thirdparty (#9171) 2021-12-20 09:10:39 +03:00
pot Update POT tests for OMZ location in openvino/thirdparty (#9171) 2021-12-20 09:10:39 +03:00
.gitignore Align folder structure for Benchmark Tool (#6625) 2021-07-19 11:57:51 +03:00
CMakeLists.txt [MO] Align MO namespaces (#7708) 2021-12-08 08:53:53 +03:00
README.md Align folder structure for Benchmark Tool (#6625) 2021-07-19 11:57:51 +03:00
requirements_dev.in Add requirements files generation for installer (#9019) 2021-12-06 01:15:31 +03:00

README.md

OpenVINO™ Python* development tools

General

OpenVINO includes following tools:

  • openvino.tools.benchmark

Please, refer to https://docs.openvinotoolkit.org for details.

Installation

Prerequisites

Install prerequisites first:

1. Python

Install Python prerequisites:

Run following command to install these prerequisites on Ubuntu*:

sudo apt-get install python3 python3-dev python3-setuptools python3-pip

Python setuptools and python package manager (pip) install packages into system directory by default. There are several options:

  • work inside [virtual environment][virtualenv] (best solution).
  • use --user option for all pip commands.
  • install all dependencies with sudo permissions.

In order to use virtual environment you should install it:

python3 -m pip install virtualenv
python3 -m virtualenv -p `which python3` <directory_for_environment>

Before starting to work inside virtual environment, it should be activated:

source <directory_for_environment>/bin/activate

Virtual environment can be deactivated using command

deactivate

2. Install packages

You can install tools by specifying path to tool with setup.py in pip install command:

python3 -m pip install <tools_folder>/

For example, to install Benchmark Tool, use the following command:

python3 -m pip install benchmark_tool/

Configuration

Each subpackage has specific configuration. Please, refer to specific subpackage documentation for details.