Skip to content

Commit

Permalink
Fix qwen2-vl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-savelyevv committed Dec 19, 2024
1 parent 93777ec commit 6a40e44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/openvino/test_exporters_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ class OVCLIExportTestCase(unittest.TestCase):
(
"image-text-to-text",
"qwen2_vl",
'int4 --group-size 4 --ratio 0.9 --sensitivity-metric "mean_activation_magnitude" '
'int4 --group-size 16 --ratio 0.8 --sensitivity-metric "mean_activation_magnitude" '
"--dataset contextual --num-samples 1",
{"int8": 8, "int4": 22},
[{"int8": 10, "int4": 20}, {"int8": 1}, {"int8": 1}, {"int8": 10}],
),
]
)
Expand Down
2 changes: 1 addition & 1 deletion tests/openvino/test_quantization.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ class OVWeightCompressionTest(unittest.TestCase):
sensitivity_metric="mean_activation_magnitude",
num_samples=1,
),
{"int4": 20, "int8": 10},
[{"int8": 10, "int4": 20}, {"int8": 1}, {"int8": 1}, {"int8": 10}],
),
]
)
Expand Down

0 comments on commit 6a40e44

Please sign in to comment.