Views
No views yet
google/gemma-4-26B-A4B with INT4 weight compression.google/gemma-4-26B-A4B1python examples/run_gemma4_vlm_openvino.py \
2 --model-dir . \
3 --device GPU \
4 --max-new-tokens 128 \
5 --prompt "Describe this image in one paragraph."
6
7If you are running from the parent directory:
8
9
10```bash
11cd ~/ov_models
12
13python ov_gemma_4_26B_A4B_INT4/examples/run_gemma4_vlm_openvino.py \
14 --model-dir ov_gemma_4_26B_A4B_INT4 \
15 --device GPU \
16 --max-new-tokens 128 \
17 --prompt "Describe this image in one paragraph."
18
19## Conversion
20
21This model was converted with Optimum Intel using OpenVINO export.
22
23```bash
24optimum-cli export openvino \
25 --model google/gemma-4-26B-A4B \
26 --weight-format int4 \
27 --trust-remote-code \
28 ov_gemma_4_26B_A4B_INT4