Skip to content

Commit

Permalink
Merge branch 'latest' into updates_properties
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandr-mokrov authored Sep 19, 2024
2 parents 96a8f4c + b37a9cb commit 0d96a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/qwen2-audio/ov_qwen2_audio_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def __init__(self, model_dir, device="CPU", ov_config=None):

self.audio_tower = core.compile_model(model_dir / AUDIO_EMBEDING_NAME, device, ov_config)

self.multi_modal_projector = core.compile_model(model_dir / MULTIMODAL_PROJECTOR_NAME)
self.multi_modal_projector = core.compile_model(model_dir / MULTIMODAL_PROJECTOR_NAME, device, ov_config)
self.vocab_size = self.config.text_config.vocab_size
self.language_model = OvModelForCausalLMWithEmb(model_dir, device, self.config.text_config, ov_config)
self.pad_token_id = self.config.pad_token_id if self.config.pad_token_id is not None else -1
Expand Down

0 comments on commit 0d96a61

Please sign in to comment.