AlexHung29629
commited on
Commit
•
e6851d5
1
Parent(s):
7e9a8c0
Update ultravox_model.py
Browse files- ultravox_model.py +1 -1
ultravox_model.py
CHANGED
@@ -186,7 +186,7 @@ class UltravoxModel(transformers.LlamaPreTrainedModel):
|
|
186 |
# B x A/3200 x D
|
187 |
audio_tower_output = self.audio_tower.forward(
|
188 |
audio_values.to(self.audio_tower.dtype),
|
189 |
-
audio_len = audio_len
|
190 |
).last_hidden_state
|
191 |
audio_tower_output = audio_tower_output.to(inputs_embeds.dtype)
|
192 |
|
|
|
186 |
# B x A/3200 x D
|
187 |
audio_tower_output = self.audio_tower.forward(
|
188 |
audio_values.to(self.audio_tower.dtype),
|
189 |
+
#audio_len = audio_len
|
190 |
).last_hidden_state
|
191 |
audio_tower_output = audio_tower_output.to(inputs_embeds.dtype)
|
192 |
|