Commit
·
31c8a67
1
Parent(s):
8b8bd52
Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def parse_transcription_with_lm(wav_file):
|
|
27 |
with torch.no_grad():
|
28 |
logits = model(**input_values).logits
|
29 |
int_result = processor.decode(logits.cpu().numpy())
|
30 |
-
|
31 |
transcription = int_result.text
|
32 |
return transcription
|
33 |
|
|
|
27 |
with torch.no_grad():
|
28 |
logits = model(**input_values).logits
|
29 |
int_result = processor.decode(logits.cpu().numpy())
|
30 |
+
print(int_result)
|
31 |
transcription = int_result.text
|
32 |
return transcription
|
33 |
|