add all exp files c1b4c86
Jialu Li commited on
How to use espnet/proyecto_nahuatl with ESPnet:
from espnet2.bin.asr_inference import Speech2Text
model = Speech2Text.from_pretrained(
"espnet/proyecto_nahuatl"
)
speech, rate = soundfile.read("speech.wav")
text, *_ = model(speech)[0]