You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from faster_whisper import WhisperModel
model_size = "large-v3"
model = WhisperModel(model_size, device="cuda", device_index=0, compute_type="float16")
segments, info = model.transcribe("rock_vocals.wav", beam_size=5, language="en", condition_on_previous_text=False)
print("hehe")
for segment in segments:
print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
log
hehe
Could not load library libcublasLt.so.11. Error: libcublasLt.so.11: cannot open shared object file: No such file or directory
Aborted (core dumped)
The text was updated successfully, but these errors were encountered:
code
log
The text was updated successfully, but these errors were encountered: