Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Model API package: add main documentation #3268

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
853599a
add documentation to Model API
anzhella-pankratova Feb 18, 2022
cb9aabe
add readme.md
anzhella-pankratova Feb 18, 2022
e88ecb8
fix spelling
anzhella-pankratova Feb 21, 2022
70cf732
add Model API section to object_detection_demo readme
anzhella-pankratova Feb 21, 2022
94ffd56
remove extra whitespace
anzhella-pankratova Feb 21, 2022
71c9f9a
add bullet points
anzhella-pankratova Feb 21, 2022
e1320e4
Apply suggestions
anzhella-pankratova Feb 21, 2022
d581e16
modify the usage example
anzhella-pankratova Feb 21, 2022
c6bd178
Modify documentation
anzhella-pankratova Feb 22, 2022
b5739fd
add extra module
anzhella-pankratova Feb 24, 2022
8701286
don't check relative links for Model API package
anzhella-pankratova Feb 24, 2022
8cca162
update check-documentation.py
anzhella-pankratova Feb 24, 2022
4b5d7fa
prepare-documentation for Python Model API
anzhella-pankratova Feb 24, 2022
325e4bf
suggestions
anzhella-pankratova Feb 25, 2022
29d247b
move the list of supported demos to demos/README.md
anzhella-pankratova Feb 25, 2022
36eb8a9
remove list of demos, remove statement in documentation
anzhella-pankratova Feb 28, 2022
41398d2
add documentation to Model API
anzhella-pankratova Feb 18, 2022
94d3976
add readme.md
anzhella-pankratova Feb 18, 2022
3ec58fc
fix spelling
anzhella-pankratova Feb 21, 2022
6ff38da
add Model API section to object_detection_demo readme
anzhella-pankratova Feb 21, 2022
0b5e278
remove extra whitespace
anzhella-pankratova Feb 21, 2022
a0ac903
add bullet points
anzhella-pankratova Feb 21, 2022
3951fb2
Apply suggestions
anzhella-pankratova Feb 21, 2022
a78852d
modify the usage example
anzhella-pankratova Feb 21, 2022
6a8144a
Modify documentation
anzhella-pankratova Feb 22, 2022
31bf4d7
add extra module
anzhella-pankratova Feb 24, 2022
f543d57
don't check relative links for Model API package
anzhella-pankratova Feb 24, 2022
a4adf83
update check-documentation.py
anzhella-pankratova Feb 24, 2022
ee53da8
prepare-documentation for Python Model API
anzhella-pankratova Feb 24, 2022
ede0f45
suggestions
anzhella-pankratova Feb 25, 2022
19872b1
move the list of supported demos to demos/README.md
anzhella-pankratova Feb 25, 2022
384c1d9
remove list of demos, remove statement in documentation
anzhella-pankratova Feb 28, 2022
e1217b4
OMZ models instead of architectures, OV supported Python instead cert…
vladimir-dudnik Mar 1, 2022
52ed496
pull recent changes
anzhella-pankratova Mar 2, 2022
06d0e99
remove python in documentation, update package structure section
anzhella-pankratova Mar 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove list of demos, remove statement in documentation
  • Loading branch information
anzhella-pankratova authored and vladimir-dudnik committed Mar 1, 2022
commit 384c1d9e95855be813df6f515540e228ac664535
1 change: 0 additions & 1 deletion ci/check-documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def complain(message):
omz_github_url = 'https://github.com/openvinotoolkit/open_model_zoo/'

for md_path in sorted(all_md_files):

referenced_md_files = set()

md_path_rel = md_path.relative_to(OMZ_ROOT)
Expand Down
12 changes: 0 additions & 12 deletions demos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,18 +278,6 @@ cmake -A x64 <open_model_zoo>/demos

To run Python demo applications, you need to install the Python* Model API package. Refer to [Python* Model API documentation](common/python/openvino/model_zoo/model_api/README.md#installing-python*-model-api-package) to learn about its installation.
ivikhrev marked this conversation as resolved.
Show resolved Hide resolved

The list of Open Model Zoo demos with Model API support:
- [BERT Named Entity Recognition Python* Demo](./bert_named_entity_recognition_demo/python/README.md)
- [BERT Question Answering Python* Demo](./bert_question_answering_demo/python/README.md)
- [BERT Question Answering Embedding Python* Demo](./bert_question_answering_embedding_demo/python/README.md)
- [Classification Python* Demo](./classification_demo/python/README.md)
- [Image Deblurring Python* Demo](./deblurring_demo/python/README.md)
- [Human Pose Estimation Python* Demo](./human_pose_estimation_demo/python/README.md)
- [Instance Segmentation Python* Demo](./instance_segmentation_demo/python/README.md)
- [MonoDepth Python* Demo](./monodepth_demo/python/README.md)
- [Object Detection Python* Demo](./object_detection_demo/python/README.md)
- [Image Segmentation Python* Demo](./segmentation_demo/python/README.md)

### <a name="build_python_extensions"></a>Build the Native Python\* Extension Modules

Some of the Python demo applications require native Python extension modules to be built before they can be run.
Expand Down
2 changes: 0 additions & 2 deletions demos/common/python/openvino/model_zoo/model_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ python -c "from openvino.model_zoo import model_api"

The Python* Model API package provides model wrappers, which implement standardized preprocessing/postprocessing functions per "task type" and incapsulate model-specific logic for usage of different models in a unified manner inside the application.

The wrapper interface is simple and flexible, which gives capabilities for the creation of custom wrappers covering different architectures and use cases.

The following tasks can be solved with wrappers usage:

| Task type | Model API wrappers |
Expand Down