Update model f23e1e0
YuanYuan Zhang commited on
How to use YuanyuanZhang/DutchCGNConformerFBank with ESPnet:
from espnet2.bin.asr_inference import Speech2Text
model = Speech2Text.from_pretrained(
"YuanyuanZhang/DutchCGNConformerFBank"
)
speech, rate = soundfile.read("speech.wav")
text, *_ = model(speech)[0]