Spaces:
Runtime error
Runtime error
vineetsharma
commited on
Commit
·
7c35a39
1
Parent(s):
59671be
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ speaker_embeddings = torch.tensor(embeddings_dataset[7306]["xvector"]).unsqueeze
|
|
40 |
|
41 |
# Dutch
|
42 |
def translate(audio):
|
43 |
-
outputs =
|
44 |
return outputs["text"]
|
45 |
|
46 |
|
|
|
40 |
|
41 |
# Dutch
|
42 |
def translate(audio):
|
43 |
+
outputs = asr_pipe(audio, max_new_tokens=256, generate_kwargs={"task": "transcribe", "language": "nl"})
|
44 |
return outputs["text"]
|
45 |
|
46 |
|