[IE Samples Docs] Add rows with model download and conversion (#6626)

* Add information about model preparation

* Add the missed file extension for the onnx model

* [c] Add information about model preparation

* [cpp] Add information about model preparation

* Update the string about model converter

* Specify a model name at steps 1 and 2 of the running example
This commit is contained in:
Dmitry Pigasin
2021-07-14 12:07:34 +03:00
committed by GitHub
parent 2378593bd5
commit 1cfe27ae1f
20 changed files with 399 additions and 239 deletions

View File

@@ -50,7 +50,7 @@ To run the sample, you need specify a model wights and ubyte image:
Running the application with the `-h` option yields the following usage message:
```sh
```
ngraph_function_creation_sample -h
[ INFO ] InferenceEngine:
API version ............<version>
@@ -75,8 +75,8 @@ Running the application with the empty list of options yields the usage message
You can do inference of an image using a pre-trained model on a GPU using the following command:
```sh
./ngraph_function_creation_sample -m <path_to_weights_file>/lenet.bin -i <path_to_image> -d GPU
```
<path_to_sample>/ngraph_function_creation_sample -m <path_to_weights_file>/lenet.bin -i <path_to_image> -d GPU
```
## Sample Output