language | metrics | library_name | pipeline_tag | tags | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
|
nemo |
automatic-speech-recognition |
|
In order to prepare and experiment with the model, it's necessary to install NVIDIA NeMo Toolkit [1].
This model have been trained on NVIDIA GeForce RTX 2070:
Python 3.7.15
NumPy 1.21.6
PyTorch 1.21.1
NVIDIA NeMo 1.7.0
pip3 install nemo_toolkit['all']
The model is accessible within the NeMo toolkit [1] and can serve as a pre-trained checkpoint for either making inferences or for fine-tuning on a different dataset.
import nemo.collections.asr as nemo_asr
model = nemo_asr.models.ASRModel.restore_from(restore_path="stt_kz_quartznet15x5.nemo")
python3 train.py \
--train_manifest path/to/manifest.json \
--val_manifest path/to/manifest.json \
--accelerator "gpu" \
--batch_size BATCH_SIZE \
--num_epochs NUM_EPOCHS \
--model_save_path path/to/save/model.nemo
python3 evaluate.py \
--model_path /path/to/model.nemo \
--test_manifest path/to/manifest.json \
--batch_size BATCH_SIZE
Sample audio to test the model:
wget https://asr-kz-example.s3.us-west-2.amazonaws.com/sample_kz.wav
This line is to transcribe the single audio:
python3 transcribe.py --model_path /path/to/model.nemo --audio_file_path path/to/audio/file
This model can take input from mono-channel audio .WAV files with a sample rate of 16,000 KHz.
Then, this model gives you the spoken words in a text format for a given audio sample.
QuartzNet 15x5 [2] is a Jasper-like network that uses separable convolutions and larger filter sizes. It has comparable accuracy to Jasper while having much fewer parameters. This particular model has 15 blocks each repeated 5 times.
The model was finetuned to Kazakh speech based on the pre-trained English Model for over several epochs.
Kazakh Speech Corpus 2 (KSC2) [3] is the first industrial-scale open-source Kazakh speech corpus.
In total, KSC2 contains around 1.2k hours of high-quality transcribed data comprising over 600k utterances.
The model achieved:
Average WER: 13.53%
through the applying of Greedy Decoding.
Because the GPU has limited power, lightweight model architecture was used for fine-tuning.
In general, this makes it faster for inference but might show less overall performance.
In addition, if the speech includes technical terms or dialect words the model hasn't learned, it may not work as well.
For inference and downloading the model, check on Hugging Face Space: NeMo_STT_KZ_Quartznet15x5
[2] QuartzNet 15x5