Pauls

Results 3 comments of Pauls

any way how to get it working with specific versions of tensorflow-cpu or tensorflow? I am having the same problem, but the download time and space it occupies is not...

@Jeronymous this is the code I called: ``` device = "cuda:0" if torch.cuda.is_available() else "cpu" model_id = "openai/whisper-large-v3" model = whisper_timestamped.load_model(model_id, device=device) result = whisper_timestamped.transcribe( model, audio, language="en", beam_size=5, best_of=5,...

Thank you @Jeronymous changing the temperature and adding vad="auditok", did indeed help at least it shows correct text, just generates loads of duplications still. I am sceptical on adding the...