Instructions to use OpenVoiceOS/parakeet-rnnt-0.6b-coreml with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use OpenVoiceOS/parakeet-rnnt-0.6b-coreml with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("OpenVoiceOS/parakeet-rnnt-0.6b-coreml") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
| { | |
| "model_id": "nvidia/parakeet-rnnt-0.6b", | |
| "model_type": "parakeet_rnnt", | |
| "language": "", | |
| "sample_rate": 16000, | |
| "max_audio_seconds": 15.0, | |
| "max_audio_samples": 240000, | |
| "vocab_size": 1024, | |
| "blank_id": 1024, | |
| "checkpoint": { | |
| "type": "pretrained", | |
| "model_id": "nvidia/parakeet-rnnt-0.6b" | |
| }, | |
| "coreml": { | |
| "compute_precision": "FLOAT32", | |
| "quantization": "none" | |
| }, | |
| "components": { | |
| "mel_encoder": { | |
| "path": "parakeet_mel_encoder.mlpackage", | |
| "inputs": { | |
| "audio_signal": [ | |
| 1, | |
| 240000 | |
| ], | |
| "audio_length": [ | |
| 1 | |
| ] | |
| }, | |
| "outputs": { | |
| "encoder": [ | |
| 1, | |
| 1024, | |
| 188 | |
| ], | |
| "encoder_length": [ | |
| 1 | |
| ] | |
| } | |
| }, | |
| "decoder": { | |
| "path": "parakeet_decoder.mlpackage", | |
| "inputs": { | |
| "targets": [ | |
| 1, | |
| 1 | |
| ], | |
| "target_length": [ | |
| 1 | |
| ], | |
| "h_in": [ | |
| 2, | |
| 1, | |
| 640 | |
| ], | |
| "c_in": [ | |
| 2, | |
| 1, | |
| 640 | |
| ] | |
| }, | |
| "outputs": { | |
| "decoder": [ | |
| 1, | |
| 640, | |
| 1 | |
| ], | |
| "h_out": [ | |
| 2, | |
| 1, | |
| 640 | |
| ], | |
| "c_out": [ | |
| 2, | |
| 1, | |
| 640 | |
| ] | |
| } | |
| }, | |
| "joint_decision_single_step": { | |
| "path": "parakeet_joint_decision_single_step.mlpackage", | |
| "inputs": { | |
| "encoder_step": [ | |
| 1, | |
| 1024, | |
| 1 | |
| ], | |
| "decoder_step": [ | |
| 1, | |
| 640, | |
| 1 | |
| ] | |
| }, | |
| "outputs": { | |
| "token_id": [ | |
| 1, | |
| 1, | |
| 1 | |
| ], | |
| "token_prob": [ | |
| 1, | |
| 1, | |
| 1 | |
| ], | |
| "duration": [ | |
| 1, | |
| 1, | |
| 1 | |
| ] | |
| } | |
| } | |
| } | |
| } |