openvino/src/bindings/python
Maxim Vafin 878e24d6f6
[PT FE] Better handle tensor names (#15718)
* Add debugNames, smartly handle tensor names, add TranslateSession

* Add friendly name specification in mark_node

* Fix code style

* Fix supported_impl logic

* Fix supported logic 2

* Optimize includes
2023-02-16 20:26:08 +01:00
..
docs [Docs][PyOV] Add information about testing pyapi (#14645) 2023-01-19 20:40:14 +01:00
src [PT FE] Better handle tensor names (#15718) 2023-02-16 20:26:08 +01:00
tests [PyOV] Support BytesIO in read_model and load (#15498) 2023-02-10 23:00:56 +01:00
tests_compatibility [ONNX FE] Added support of DFT operator (#15280) 2023-01-30 08:46:09 +01:00
thirdparty Bump pybind11 to v2.10.1 release tag (#13793) 2022-11-04 02:12:47 +04:00
wheel Added -Wall for Clang and GCC (#15513) 2023-02-08 15:01:00 +04:00
.clang-format Rename runtime to src (#8842) 2021-11-27 11:28:25 +03:00
.gitignore [PyOV] Making offline_transformations a private module (#13213) 2022-09-28 18:38:52 +02:00
CMakeLists.txt Generalized OpenCL handling (#15253) 2023-02-03 15:36:47 +00:00
README.md [PyOV] Add README.md and align structure-showing style (#14093) 2022-11-21 16:42:36 +01:00
pyproject.toml [PYTHON API] Check new config (#11402) 2022-06-13 10:21:04 +02:00
requirements.txt [Install] Remove upper bound for NumPy for default installation and update upper bounds for extras (#13985) 2022-11-30 09:53:06 +04:00
requirements_test.txt Bump pytest from 7.2.0 to 7.2.1 in /src/bindings/python (#15351) 2023-01-27 13:33:18 +04:00
setup.cfg [PyOV] Fix mypy after bump, general refactor (#13913) 2022-11-08 19:26:39 +04:00
setup.py [PyOV] Change default opset9->opset10 (#15238) 2023-02-01 13:44:58 +01:00

README.md

OpenVINO Python API

OpenVINO Python API is a part of the OpenVINO library. The component is responsible for:

  • Bindings of OpenVINO - allowing users to use the OpenVINO library in their Python code. Python API provides bindings to basic and advanced APIs from OpenVINO Runtime.
  • Extending OpenVINO with pythonic features - on top of direct translations from C++, Python API component:
    • Adds specific extensions to support numpy-based data.
    • Provides support for external frameworks inputs.
    • Provides shortcuts and helpers with more pythonic design.
    • Allows to apply advanced concepts, like shared memory, to take full advantage of OpenVINO.

OpenVINO Python API uses the common codestyle checks which are adjusted to project needs.

Key contacts

If you have any questions, feature requests or want us to review your PRs, send us a message or ping us on GitHub via openvino-ie-python-api-maintainers. You can always directly contact everyone from this group.

Components

OpenVINO PYTHON API has the following structure:

  • docs - folder that contains developer documentation and code examples.
  • src - folder with all source files for Python API.
  • tests - tests directory for current API.
  • tests_compatibility - tests directory for compatibility API.
  • thirdparty - folder that contains third-party modules like pybind11.
  • wheel - wheel-specific directory that contains all specific requirements and files used during wheel creation.

Tutorials

If you want to contribute to OpenVINO Python API, here is the list of learning materials and project guidelines:

See also