ValueError: Invalid input features shape: expected an input with shape (1, 128, 3000), but got an input with shape (1, 80, 3000) instead

#1
by haiderasad - opened

error when executing

`from faster_whisper import WhisperModel

model = WhisperModel("flyingleafe/faster-whisper-large-v3")

segments, info = model.transcribe("male.wav")
for segment in segments:
print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))`

@haiderasad large-v3 support has not yet merged to faster-whisper master, use this PR: https://github.com/guillaumekln/faster-whisper/pull/548

Sign up or log in to comment