-
Notifications
You must be signed in to change notification settings - Fork 2.4k
SampleContribute
Kate Generalova edited this page Apr 22, 2021
·
12 revisions
The Inference Engine sample applications are simple console applications that show how to utilize specific Inference Engine capabilities within an application, assist developers in executing specific tasks such as loading a model, running inference, querying specific device capabilities and etc.
Main Goal of Sample: Illustrate the primary, basic use case of the Inference Engine API
Requirements:
- Each sample should represent the main flow to inference with OpenVINO(TM). Add commit blocks for each Integration step from the flow like in other samples.
- Add explicit comments to your code if needed. It may help new users to understand your sample.
- Create README.md for your sample with the following sections:
- Description - a short description about the sample, used features, and model type
- Table of API
- Table of common values, like (validated model, validated input data, supported devices, other language realization)
- How It Works
- Building
- Running
- Sample Output
- See Also - section with useful links to proceed
- Description - a short description about the sample, used features, and model type
- Please follow repo code style, we have linter checks for each PR.
- Please use the basic
hello
sample as a template to create your sample. - One sample - one type of model and no more than 2 API special features.
- Each API feature should be documented with code snippets on our OpenVINO Documentation site
- Sample should be developed with a one-source approach, without explicit pre/post-processing steps.
- Prefer C++/Python realizations for each sample (C is optional).
- Use name for sample in format: <model_type> Sample.
Please take it in your mind before creating your sample.
© Copyright 2018-2024, OpenVINO team
- Home
- General resources
- How to build
-
Developer documentation
- Inference Engine architecture
- CPU plugin
- GPU plugin
- HETERO plugin architecture
- Snippets
- Sample for IE C++/C/Python API
- Proxy plugin (Concept)
- Tests