Instructions to use speechbrain/m-ctc-t-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use speechbrain/m-ctc-t-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="speechbrain/m-ctc-t-large")# Load model directly from transformers import AutoModelForCTC model = AutoModelForCTC.from_pretrained("speechbrain/m-ctc-t-large", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "K": 257, | |
| "do_normalize": true, | |
| "feature_extractor_type": "MCTCTFeatureExtractor", | |
| "feature_size": 80, | |
| "frame_signal_scale": 32768.0, | |
| "hop_length": 10, | |
| "mel_floor": 1.0, | |
| "n_fft": 512, | |
| "normalize_means": true, | |
| "normalize_vars": true, | |
| "padding_side": "right", | |
| "padding_value": 0.0, | |
| "preemphasis_coeff": 0.97, | |
| "return_attention_mask": false, | |
| "sample_size": 400, | |
| "sample_stride": 160, | |
| "sampling_rate": 16000, | |
| "win_function": "hamming_window", | |
| "win_length": 25 | |
| } | |