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: libraries/dl-streamer/samples/gstreamer/gst_launch/gvagenai/README.md
+11-39Lines changed: 11 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,51 +19,23 @@ This sample builds GStreamer pipeline of the following elements:
19
19
-`gvametapublish` for saving inference results to a JSON file
20
20
-`fakesink` for discarding output
21
21
22
-
## MiniCPM-V Model Preparation
22
+
## Model Preparation
23
23
24
-
You need to prepare your MiniCPM-V model in OpenVINO™ format, you can learn more from [Visual-language assistant with MiniCPM-V2 and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/minicpm-v-multimodal-chatbot/minicpm-v-multimodal-chatbot.ipynb):
You need to prepare your Phi-4-multimodal-instruct model in OpenVINO™ format, you can learn more from [Visual-language assistant with Phi-4-multimodal-instruct and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/phi-4-multimodal/phi-4-multimodal.ipynb):
You need to prepare your Gemma 3 model in OpenVINO™ format, you can learn more from [Visual-language assistant with Gemma 3 and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/gemma3/gemma3.ipynb):
> To install `optimum-cli` and other required dependencies for model export, refer to the respective OpenVINO™ notebook tutorials linked in the table below.
26
+
> DL Streamer currently depends on OpenVINO™ GenAI 2025.3.0. For optimal compatibility, use the library versions specified in [export-requirements.txt](https://github.com/openvinotoolkit/openvino.genai/blob/releases/2025/3/samples/export-requirements.txt).
57
27
58
-
Set the model path:
28
+
| Model | Export Command | Tutorial |
29
+
|-------|----------------|----------|
30
+
|**MiniCPM-V 2.6**|`optimum-cli export openvino --model openbmb/MiniCPM-V-2_6 --weight-format int4 MiniCPM-V-2_6`|[Visual-language assistant with MiniCPM-V2 and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/minicpm-v-multimodal-chatbot/minicpm-v-multimodal-chatbot.ipynb)|
31
+
|**Phi-4-multimodal-instruct**|`optimum-cli export openvino --model microsoft/Phi-4-multimodal-instruct Phi-4-multimodal`|[Visual-language assistant with Phi-4-multimodal-instruct and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/phi-4-multimodal/phi-4-multimodal.ipynb)|
32
+
|**Gemma 3**|`optimum-cli export openvino --model google/gemma-3-4b-it Gemma3`|[Visual-language assistant with Gemma 3 and OpenVINO™](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/gemma3/gemma3.ipynb)|
59
33
34
+
After exporting the model, set the model path:
60
35
```bash
61
-
export GENAI_MODEL_PATH=/path/to/your/Gemma3
36
+
export GENAI_MODEL_PATH=/path/to/your/model
62
37
```
63
38
64
-
> [!NOTE]
65
-
> For installation of `optimum-cli` and other required dependencies needed to export the models, please refer to the respective OpenVINO™ notebook tutorials linked in each model preparation section above.
0 commit comments