You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user-guide/other-topics/how-to-configure-dlstreamer-video-pipeline.md
+15-33Lines changed: 15 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,10 @@ Model chaining allows you to combine multiple AI models in a single pipeline to
30
30
31
31
##### Prerequisites
32
32
33
-
By default, only a limited number of models is downloaded during helm chart installation, which limits the possibilities of model chaining. To enable the full set of models:
33
+
By default, only a limited number of models is downloaded during helm chart installation, which limits the possibilities of model chaining. To enable all models:
34
34
35
-
1. Set `initModels.modelType=all` in `kubernetes/scenescape-chart/values.yaml`.
36
-
2. Configure desired model precisions (e.g., `initModels.modelPrecisions=FP16`) in `kubernetes/scenescape-chart/values.yaml`.
37
-
3. (Re)deploy Intel® SceneScape to download the additional models.
35
+
1. Configure desired model precisions (e.g., `initModels.modelPrecisions=FP16`) in `kubernetes/scenescape-chart/values.yaml`.
36
+
2. (Re)deploy Intel® SceneScape to download the supported models.
38
37
39
38
##### Chaining Syntax
40
39
@@ -50,28 +49,14 @@ By default, only a limited number of models is downloaded during helm chart inst
50
49
51
50
Use the following short names to refer to each model in the chain:
52
51
53
-
| Category | Full Model Name | Short Name | Description |
Copy file name to clipboardExpand all lines: model_installer/src/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,16 +9,16 @@ The models and configuration files are downloaded into a models volume that is a
9
9
10
10
## Configuration
11
11
12
-
Model installer can be configured to download a specific set of models using the following parameters:
12
+
Model installer downloads the supported model set defined in `install-omz-models` (`_DEFAULT_MODELS`) and can be configured with the following parameters:
13
13
14
-
| Parameter | Allowed Values | Format | Description|
|`models`|`default`, `ocr`, `all`|Single value | Specifies which set of models to download. `default` includes person detection, re-identification, and pose estimation models. `ocr` includes text detection and recognition models. `all` downloads both default and OCR models.|
17
-
|`precisions`|`FP32`, `FP16`, `INT8`| Comma-separated list | Model precision formats to download. Multiple precisions can be specified for the same model (e.g., `FP16,FP32`). The first one will be used as preferred when generating `model-config.json`|
14
+
| Parameter | Allowed Values | Format | Description |
|`precisions`|`FP32`, `FP16`, `INT8`|Comma-separated list | Model precision formats to download. Multiple precisions can be specified for the same model (e.g., `FP16,FP32`). The first one will be used as preferred when generating `model-config.json`|
17
+
|`model_proc`|`true`, `false`| Single value | When enabled, attempts to download model-proc JSON files for each supported model and precision. |
18
18
19
-
For Kubernetes deployment refer to the `initModels` section in [Helm chart values](../../kubernetes/scenescape-chart/values.yaml), for example use `--set initModels.modelType=all --set initModels.modelPrecisions=FP16,FP32` when installing the Helm chart.
19
+
For Kubernetes deployment refer to the `initModels` section in [Helm chart values](../../kubernetes/scenescape-chart/values.yaml), for example use `--set initModels.modelPrecisions=FP16,FP32 --set initModels.modelProc=true` when installing the Helm chart.
20
20
21
-
For Docker deployment use `MODELS` and `PRECISIONS` environment variables when building, e.g.: `make install-models MODELS=all` or `make install-models MODELS=all PRECISIONS="FP16,FP8"`.
21
+
For Docker deployment use `PRECISIONS` environment variable when building, e.g.: `make install-models` or `make install-models PRECISIONS="FP16,FP32"`.
0 commit comments