π― CTC Forced Aligner
We are open-sourcing the CTC forced aligner used in Deskpai.
With focus on production-ready model inference, it supports 18 different alignment models, including multilingual models(German, English, Spanish, French and Italian etc), and provides SRT and WebVTT alignment and generation out of box. It supports both ONNXRuntime and PyTorch for model serving.
π Installation
- CPU inference via ONNXRuntime
pip install ctc_forced_aligner
- GPU inference via ONNXRuntime
pip install ctc_forced_aligner[gpu]
- CPU/GPU inference via PyTorch
pip install ctc_forced_aligner[torch]
- Install all dependencies
pip install ctc_forced_aligner[all]
π Sample Inference Code
- CPU/GPU inference via ONNXRuntime
from ctc_forced_aligner import AlignmentSingleton
alignment_service = AlignmentSingleton()
input_audio_path = "audio.mp3"
input_text_path = "input.txt"
output_srt_path = "output.srt"
ret = alignment_service.generate_srt(input_audio_path,
input_text_path,
output_srt_path)
if ret:
print(f"Aligned SRT is generated at {output_srt_path}")
output_vtt_path = "output.vtt"
ret = alignment_service.generate_webvtt(input_audio_path,
input_text_path,
output_vtt_path)
if ret:
print(f"aligned VTT is generated to {output_vtt_path}")
- CPU/GPU inference via PyTorch
from ctc_forced_aligner import AlignmentTorch
at = AlignmentTorch()
ret = at.generate_srt(input_audio_path, input_text_path, output_srt_path)
if ret:
print(f"aligned srt is generated to {output_srt_path}")
ret = at.generate_webvtt(input_audio_path, input_text_path, output_vtt_path)
if ret:
print(f"aligned VTT is generated to {output_vtt_path}")
- Inference with multiple models
from ctc_forced_aligner import AlignmentTorch
at = AlignmentTorch()
ret = at.generate_srt(input_audio_path, input_text_path, output_srt_path, model_type='WAV2VEC2_ASR_BASE_960H')
if ret:
print(f"aligned srt is generated to {output_srt_path}")
ret = at.generate_webvtt(input_audio_path, input_text_path, output_vtt_path, model_type='WAV2VEC2_ASR_BASE_960H')
if ret:
print(f"aligned VTT is generated to {output_vtt_path}")
Models Supported
β Wav2Vec2 Models
These are fine-tuned models with a CTC-based ASR head:
WAV2VEC2_ASR_BASE_960HWAV2VEC2_ASR_BASE_100HWAV2VEC2_ASR_BASE_10MWAV2VEC2_ASR_LARGE_10MWAV2VEC2_ASR_LARGE_100HWAV2VEC2_ASR_LARGE_960HWAV2VEC2_ASR_LARGE_LV60K_10MWAV2VEC2_ASR_LARGE_LV60K_100HWAV2VEC2_ASR_LARGE_LV60K_960H
β VoxPopuli Models (Multilingual)
These models are fine-tuned for specific languages:
VOXPOPULI_ASR_BASE_10K_DE(German ASR)VOXPOPULI_ASR_BASE_10K_EN(English ASR)VOXPOPULI_ASR_BASE_10K_ES(Spanish ASR)VOXPOPULI_ASR_BASE_10K_FR(French ASR)VOXPOPULI_ASR_BASE_10K_IT(Italian ASR)Fine-tuned on VoxPopuli speech corpus.
β HuBERT Models
HUBERT_ASR_LARGEHUBERT_ASR_XLARGE
π‘ Which One and How to Use?
For PyTorch serving, use AlignmentTorch or AlignmentTorchSingleton.
- For English ASR β
WAV2VEC2_ASR_LARGE_960HorHUBERT_ASR_LARGE - For multilingual ASR β
VOXPOPULI_ASR_BASE_10K_* - For low-resource ASR β
WAV2VEC2_ASR_BASE_10M(smallest model) - For best accuracy β
WAV2VEC2_ASR_LARGE_LV60K_960HorHUBERT_ASR_XLARGE
For ONNXRuntime serving with minimum dependencies, use Alignment or AlignmentSingleton.
Please contact us if you want to integrate your model into this package.
π License
Code
- This project includes code from pytorch/audio, licensed under the
BSD-2-Clauselicense. - This project includes code from MahmoudAshraf97/ctc-forced-aligner, licensed under the
BSDlicense.This project is licensed under the BSD License, note that the default model has CC-BY-NC 4.0 License, so make sure to use a different model for commercial usage. - Modifications and additional code are contributed by Deskpai.com and licensed under the DOSL-1.0 license.
Model
- The following models are developed by Meta AI (formerly Facebook AI) under
MIT Licenseand redistributed with the same license.WAV2VEC2_ASR_BASE_960HWAV2VEC2_ASR_BASE_100HWAV2VEC2_ASR_BASE_10MWAV2VEC2_ASR_LARGE_10MWAV2VEC2_ASR_LARGE_100HWAV2VEC2_ASR_LARGE_960HWAV2VEC2_ASR_LARGE_LV60K_10MWAV2VEC2_ASR_LARGE_LV60K_100HWAV2VEC2_ASR_LARGE_LV60K_960H
- VoxPopuli and HuBERT models are also developed by Meta AI and are generally released under the MIT License. The specific licensing for these models can be found in their respective repositories or documentation. Please check it on your own.
VOXPOPULI_ASR_BASE_10K_DEVOXPOPULI_ASR_BASE_10K_ENVOXPOPULI_ASR_BASE_10K_ESVOXPOPULI_ASR_BASE_10K_FRVOXPOPULI_ASR_BASE_10K_ITHUBERT_ASR_LARGEHUBERT_ASR_XLARGE
- The model
MMS_FAis published by the authors of Scaling Speech Technology to 1,000+ Languages Pratap et al., 2023 underCC-BY-NC 4.0 License. - The onnx model weights are created by Deskpai.com based on the model of MahmoudAshraf/mms-300m-1130-forced-aligner and under
CC-BY-NC 4.0 License.
π Note: It's essential to verify the licensing terms from the official repositories or documentation before using these models.