Views
No views yet
1import nemo.collections.asr as nemo_asr 2 3model = nemo_asr.models.ASRModel.restore_from("best_model.nemo") 4hypotheses = model.transcribe(["audio.flac"]) 5print(hypotheses[0].text)