Views
No views yet
ve_tok_v4 tokenizer and trains it up via a 2-phase curriculum -> a working transducer head.| head | v1.0 | v1.5 |
|---|---|---|
| CTC | 8.12% | 8.12% (identical) |
| RNNT | 4398% (broken) | 9.50% |
1from nemo.collections.asr.models import ASRModel
2m = ASRModel.from_pretrained("Reza2kn/Shenava-Koochik-v1.5")
3m.change_decoding_strategy(decoder_type="ctc") # or "rnnt"
4print(m.transcribe(["audio.wav"]))