Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,6 +34,7 @@ def parse(wav_file):
|
|
34 |
input_values = read_file_and_process(wav_file)
|
35 |
with torch.no_grad():
|
36 |
logits = model(**input_values).logits
|
|
|
37 |
|
38 |
|
39 |
|
|
|
34 |
input_values = read_file_and_process(wav_file)
|
35 |
with torch.no_grad():
|
36 |
logits = model(**input_values).logits
|
37 |
+
return parse_transcription(logits)
|
38 |
|
39 |
|
40 |
|