Instructions to use speechbrain/asr-transformer-aishell with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- speechbrain
How to use speechbrain/asr-transformer-aishell with speechbrain:
from speechbrain.pretrained import EncoderDecoderASR model = EncoderDecoderASR.from_hparams( "speechbrain/asr-transformer-aishell" ) model.transcribe_file("file.wav") - Notebooks
- Google Colab
- Kaggle
Fix SB 1.0 compatibility
#1
by sdelangen - opened
See: https://github.com/speechbrain/speechbrain/issues/2604
This model was trained with causal: True (the default), but this functionality was broken pre-1.0.
Upon checking, the TransformerASR for this model doesn't seem to have anything else affected by the switch from causal: True to causal: False.
Titouan changed pull request status to merged