openvino/src/bindings/python
Przemyslaw Wysocki 8872077c1d
[PyOV] Add Python API for MaxPool-14 and AvgPool-14 (#22966)
### Details:
 - Extend Python API with`MaxPool-14` and `AvgPool-14`
- They both introduce a new ceil mode:
`ov::op::RoundingType::CEIL_TORCH`
- The new ceiling mode does not allow the last pooling in a Dimension to
start in the padding area

### Related PRs
 - https://github.com/openvinotoolkit/openvino/pull/22930
 - https://github.com/openvinotoolkit/openvino/pull/22796
 - https://github.com/openvinotoolkit/openvino/pull/23027
 - https://github.com/openvinotoolkit/openvino/pull/23381
 - https://github.com/openvinotoolkit/openvino/pull/23582

### Tickets:
 - 131961

### Context
https://github.com/openvinotoolkit/openvino/issues/18731

---------

Co-authored-by: Katarzyna Mitrus <katarzyna.mitrus@intel.com>
2024-03-22 06:25:01 +00:00
..
docs Update year in src/bindings/python folder (#22186) 2024-01-16 18:58:06 +01:00
src [PyOV] Add Python API for MaxPool-14 and AvgPool-14 (#22966) 2024-03-22 06:25:01 +00:00
tests [PyOV] Add Python API for MaxPool-14 and AvgPool-14 (#22966) 2024-03-22 06:25:01 +00:00
thirdparty Added a WA for running Python API in debug mode (#18848) 2023-07-28 17:29:09 +04:00
wheel Avoid stripping of debug info in wheels (#23345) 2024-03-13 23:07:40 +00: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 Additional cleaning of `InferenceEngine` (#22959) 2024-02-20 13:26:53 +00:00
README.md [DOCS] Update of hyperlinks to 2024 + new ov homepage diagram image for master (#23091) 2024-02-28 07:54:04 +00:00
constraints.txt [TF FE] Support TensorFlow 2.16 (#23562) 2024-03-21 20:39:39 +00:00
pyproject.toml [PYTHON API] Check new config (#11402) 2022-06-13 10:21:04 +02:00
requirements.txt Get rid of distutils (#22281) 2024-01-24 21:22:57 +01:00
requirements_test.txt Don't use complex dependencies in Python API tests (#23104) 2024-02-28 08:21:57 +00:00
setup.cfg [PyOV] Legacy IE Python API removal (#20908) 2024-01-11 13:46:49 +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 OpenVINO Python 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