Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,7 @@ def transcribe(state, file):
|
|
8 |
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="stt_rw_conformer_ctc_large")
|
9 |
|
10 |
transcription= asr_model.transcribe([audio])
|
|
|
11 |
return transcription[0]
|
12 |
|
13 |
|
|
|
8 |
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="stt_rw_conformer_ctc_large")
|
9 |
|
10 |
transcription= asr_model.transcribe([audio])
|
11 |
+
print(transcription)
|
12 |
return transcription[0]
|
13 |
|
14 |
|