Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
echarlaix committed Mar 8, 2024
1 parent 94a990f commit b12a536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/openvino/test_training.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def check_ovmodel_reshaping(self, ovmodel: OVModel):
nncf_compression_config=[STRUCTURED_MOVEMENT_SPARSITY_CONFIG_FOR_SWIN, DEFAULT_QUANTIZATION_CONFIG],
expected_fake_quantize=28,
expected_int8=28,
expected_binary_masks=40,
expected_binary_masks=48,
compression_metrics=["compression_loss"],
),
"default_quantization,unstructured_movement_sparsity": OVTrainerTestDescriptor(
Expand All @@ -591,7 +591,7 @@ def check_ovmodel_reshaping(self, ovmodel: OVModel):
nncf_compression_config=[STRUCTURED_MOVEMENT_SPARSITY_CONFIG_FOR_SWIN, DEFAULT_QUANTIZATION_CONFIG],
expected_fake_quantize=28,
expected_int8=28,
expected_binary_masks=40,
expected_binary_masks=48,
compression_metrics=["compression_loss", "distillation_loss", "task_loss"],
),
"distillation,default_quantization,unstructured_movement_sparsity": OVTrainerTestDescriptor(
Expand Down Expand Up @@ -749,7 +749,7 @@ def check_ovmodel_reshaping(self, ovmodel: OVModel):
"quantization,structured_movement_sparsity": OVTrainerTestDescriptor(
model_id="hf-internal-testing/tiny-random-Wav2Vec2Model",
nncf_compression_config=[QUANTIZATION_CONFIG_FOR_WAV2VEC2, STRUCTURED_MOVEMENT_SPARSITY_CONFIG_FOR_WAV2VEC2],
expected_fake_quantize=48,
expected_fake_quantize=40,
expected_int8=30,
expected_binary_masks=48,
compression_metrics=["compression_loss"],
Expand All @@ -766,7 +766,7 @@ def check_ovmodel_reshaping(self, ovmodel: OVModel):
model_id="hf-internal-testing/tiny-random-Wav2Vec2Model",
teacher_model_id="hf-internal-testing/tiny-random-Wav2Vec2Model",
nncf_compression_config=[QUANTIZATION_CONFIG_FOR_WAV2VEC2, STRUCTURED_MOVEMENT_SPARSITY_CONFIG_FOR_WAV2VEC2],
expected_fake_quantize=48,
expected_fake_quantize=40,
expected_int8=30,
expected_binary_masks=48,
compression_metrics=["compression_loss", "distillation_loss", "task_loss"],
Expand Down

0 comments on commit b12a536

Please sign in to comment.