Skip to content

Commit cfd3772

Browse files
author
Roman Donchenko
authored
Merge pull request #2175 from vladimir-dudnik/vd/describe-public-models-convertion
describe model load and convertion to IR
2 parents 9f282b9 + a2366cc commit cfd3772

File tree

162 files changed

+2174
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+2174
-56
lines changed

data/dataset_classes/voc_20cl.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
aeroplane
2+
bicycle
3+
bird
4+
boat
5+
bottle
6+
bus
7+
car
8+
cat
9+
chair
10+
cow
11+
diningtable
12+
dog
13+
horse
14+
motorbike
15+
person
16+
pottedplant
17+
sheep
18+
sofa
19+
train
20+
tvmonitor
File renamed without changes.

demos/interactive_face_detection_demo/cpp/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,17 @@ Options:
9494

9595
Running the application with an empty list of options yields the usage message given above and an error message.
9696

97-
To run the demo, you can use public or pre-trained models. To download the pre-trained models, use the OpenVINO [Model Downloader](../../../tools/downloader/README.md). The list of models supported by the demo is in [models.lst](./models.lst).
97+
To run the demo, you can use public or Intel pre-trained models. You can download models and, if necessary, convert them into Inference Engine format using the [Model Downloader and other automation tools](../../../tools/downloader/README.md) as shown in the examples below. The models which are supported by the demo are listed in the [models.lst](./models.lst) file.
9898

99-
> **NOTE**: Before running the demo with a trained model, make sure the model is converted to the Inference Engine format (\*.xml + \*.bin) using the [Model Optimizer tool](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html).
99+
An example of using the Model Downloader:
100+
```
101+
python3 <omz_dir>/tools/downloader/downloader.py --list models.lst
102+
```
103+
104+
An example of using the Model Converter:
105+
```
106+
python3 <omz_dir>/tools/downloader/converter.py --list models.lst
107+
```
100108

101109
For example, to do inference on a GPU with the OpenVINO&trade; toolkit pre-trained models, run the following command:
102110

demos/interactive_face_detection_demo/cpp_gapi/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,17 @@ Options:
6767

6868
Running the application with an empty list of options yields the usage message given above and an error message.
6969

70-
To run the demo, you can use public or pre-trained models. To download the pre-trained models, use the OpenVINO [Model Downloader](../../../tools/downloader/README.md). The list of models supported by the demo is in [models.lst](models.lst).
70+
To run the demo, you can use public or Intel pre-trained models. You can download models and, if necessary, convert them into Inference Engine format using the [Model Downloader and other automation tools](../../../tools/downloader/README.md) as shown in the examples below. The models which are supported by the demo are listed in the [models.lst](./models.lst) file.
7171

72-
> **NOTE**: Before running the demo with a trained model, make sure the model is converted to the Inference Engine format (\*.xml + \*.bin) using the [Model Optimizer tool](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html).
72+
An example of using the Model Downloader:
73+
```
74+
python3 <omz_dir>/tools/downloader/downloader.py --list models.lst
75+
```
76+
77+
An example of using the Model Converter:
78+
```
79+
python3 <omz_dir>/tools/downloader/converter.py --list models.lst
80+
```
7381

7482
For example, to do inference on a GPU with the OpenVINO&trade; toolkit pre-trained models, run the following command:
7583

models/intel/icnet-camvid-ava-0001/description/icnet-camvid-ava-0001.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ A trained model of ICNet for fast semantic segmentation, trained on the CamVid\*
66

77
The model input is a blob that consists of a single image of `1x3x720x960` in the BGR order. The pixel values are integers in the [0, 255] range.
88

9-
The model output for `icnet-camvid-ava-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset.
9+
The model output for `icnet-camvid-ava-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset:
10+
- Sky
11+
- Building
12+
- Pole
13+
- Road
14+
- Pavement
15+
- Tree
16+
- SignSymbol
17+
- Fence
18+
- Vehicle
19+
- Pedestrian
20+
- Bike
21+
- Unlabeled
1022

1123
## Specification
1224

models/intel/icnet-camvid-ava-sparse-30-0001/description/icnet-camvid-ava-sparse-30-0001.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ A trained model of ICNet for fast semantic segmentation, trained on the CamVid\*
66

77
The model input is a blob that consists of a single image of `1x3x720x960` in the BGR order. The pixel values are integers in the [0, 255] range.
88

9-
The model output for `icnet-camvid-ava-sparse-30-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset.
9+
The model output for `icnet-camvid-ava-sparse-30-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset:
10+
- Sky
11+
- Building
12+
- Pole
13+
- Road
14+
- Pavement
15+
- Tree
16+
- SignSymbol
17+
- Fence
18+
- Vehicle
19+
- Pedestrian
20+
- Bike
21+
- Unlabeled
1022

1123
## Specification
1224

models/intel/icnet-camvid-ava-sparse-60-0001/description/icnet-camvid-ava-sparse-60-0001.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ A trained model of ICNet for fast semantic segmentation, trained on the CamVid\*
66

77
The model input is a blob that consists of a single image of `1x3x720x960` in the BGR order. The pixel values are integers in the [0, 255] range.
88

9-
The model output for `icnet-camvid-ava-sparse-60-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset.
9+
The model output for `icnet-camvid-ava-sparse-60-0001` is the predicted class index of each input pixel belonging to one of the 12 classes of the CamVid dataset:
10+
- Sky
11+
- Building
12+
- Pole
13+
- Road
14+
- Pavement
15+
- Tree
16+
- SignSymbol
17+
- Fence
18+
- Vehicle
19+
- Pedestrian
20+
- Bike
21+
- Unlabeled
1022

1123
## Specification
1224

models/intel/unet-camvid-onnx-0001/description/unet-camvid-onnx-0001.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ This is a U-Net model that is designed to perform semantic segmentation. The mod
66

77
The model input is a blob that consists of a single image of `1x3x368x480` in the BGR order. The pixel values are integers in the [0, 255] range.
88

9-
The model output for `unet-camvid-onnx-0001` is the per-pixel probabilities of each input pixel belonging to one of the 12 classes of the CamVid dataset.
9+
The model output for `unet-camvid-onnx-0001` is the per-pixel probabilities of each input pixel belonging to one of the 12 classes of the CamVid dataset:
10+
- Sky
11+
- Building
12+
- Pole
13+
- Road
14+
- Pavement
15+
- Tree
16+
- SignSymbol
17+
- Fence
18+
- Vehicle
19+
- Pedestrian
20+
- Bike
21+
- Unlabeled
1022

1123
## Specification
1224

0 commit comments

Comments
 (0)