jason1i commited on
Commit
397665a
·
1 Parent(s): d1fb32e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ speaker_embeddings = torch.tensor(embeddings_dataset[7306]["xvector"]).unsqueeze
42
  # At Inference. it should use translate(sample["audio"].copy())
43
 
44
  def translate(audio):
45
- outputs = asr_pipe(audio, max_new_tokens=256, generate_kwargs={"task": "transcribe", "language": "nl"})
46
  return outputs["text"]
47
 
48
 
 
42
  # At Inference. it should use translate(sample["audio"].copy())
43
 
44
  def translate(audio):
45
+ outputs = asr_pipe(audio, max_new_tokens=256, generate_kwargs={"task": "transcribe", "language": "de"})
46
  return outputs["text"]
47
 
48