CoolFace
Modelpublic

gabrielpirlo/Sped_ParakeetRomanian_110M_TDT-CTC

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
6likes481downloads
Model Card

SpeD_ParakeetRo_110M_TDT-CTC is a Romanian Automatic Speech Recognition (ASR) model based on the FastConformer Hybrid TDT-CTC 110M architecture from NVIDIA NeMo. The model is adapted from an English pre-trained checkpoint to Romanian through transfer learning, leveraging both speech and text data to achieve strong performance on a low-resource language.


๐Ÿง  Model Architecture

  • โ€”Base model: Parakeet Hybrid TDT-CTC 110M (NVIDIA NeMo)
  • โ€”Pre-training: Self-Supervised Learning (SSL) on LibriLight + supervised fine-tuning on 36k hours of English
  • โ€”Tokenizer: SentencePiece, 1024 BPE tokens (max subword length 5)
  • โ€”Romanian alphabet: 31 characters + hyphen (โ€œ-โ€)

๐Ÿ—ฃ๏ธ Romanian Adaptation

  • โ€”Training speech: 2,636 hours Romanian speech (manually and automatically annotated)
  • โ€”Text corpus: 24.6M cleaned Romanian sentences (news domain + speech transcriptions)
  • โ€”Tokenizer: Rebuilt on Romanian text corpus using SentencePiece

๐Ÿงช Data Augmentation

  • โ€”Noise: MUSAN (6h Freesound subset), SNR 10โ€“30, prob. 0.2
  • โ€”Speed perturbation: 0.9โ€“1.1, prob. 0.4
  • โ€”SpecAugment + SpecCutout

โš™๏ธ Training Details

This script was used for training and the base training configuration.

  • โ€”Optimizer: AdamW (lr=2.0, weight_decay=1eโˆ’3)
  • โ€”Scheduler: Noam Annealing with 10k warmup steps
  • โ€”CTC loss weight: 0.3
  • โ€”Epochs: 30
  • โ€”Batch size: 32 (grad accumulation 8)
  • โ€”Precision: BFloat16
  • โ€”Hardware: NVIDIA RTX 4090 24GB
  • โ€”Epoch time: ~5.5 hours
  • โ€”Final model: Checkpoint averaging of top 10 validation WER

Inference

In order to run your own experiment, navigate to this repository :

bash
cd examples/asr

python3 speech_to_text_eval.py \
dataset_manifest=../../manifests/SSC-eval1_manifest.json \
model_path=... \
output_filename=... \
decoder_type=ctc \
ctc_decoding.strategy=beam \
ctc_decoding.beam.kenlm_path=... \
ctc_decoding.beam.beam_alpha=... \
ctc_decoding.beam.beam_beta=... \
ctc_decoding.beam.beam_size=...

Results

The model can be used with two different decoders and multiple decoding strategies. In order to use the model with the external N-gram model, check this model card. Values for the beam parameters used with the 6-gram tokens model are: beam_size=32, beam_alpha=0.9, beam_beta=2.

**Architecture****Decoding****RSC-eval****SSC-eval1****SSC-eval2****CDEP-eval****CV-21****Fleurs-RO****USPDATRO****RTFx**
Parakeet Ro 110M TDT (ours)Greedy2.169.0810.854.203.5710.6124.08126.15
ALSD2.058.6410.884.173.3810.1624.3066.63
Parakeet Ro 110M CTC (ours)Greedy2.5710.1012.654.804.2011.8527.80130.55
Beam Token N-gram1.738.1210.753.923.298.8523.40109.46

๐Ÿ“„ Citation

Citation

If you use this model, please cite:

@misc{pirlogeanu2025opensourcestateoftheartsolution,
      title={Open Source State-Of-the-Art Solution for Romanian Speech Recognition}, 
      author={Gabriel Pirlogeanu and Alexandru-Lucian Georgescu and Horia Cucu},
      year={2025},
      eprint={2511.03361},
      archivePrefix={arXiv},
      primaryClass={eess.AS},
      url={https://arxiv.org/abs/2511.03361}, 
}

Also consider citing the original NVIDIA NeMo framework and KenLM:

@article{kuchaiev2019nemo,
  title={NeMo: a toolkit for building AI applications using Neural Modules},
  author={Kuchaiev, Oleksii and Ginsburg, Boris and others},
  journal={arXiv preprint arXiv:1909.09577},
  year={2019}
}

@inproceedings{heafield-2011-kenlm,
    title = "{K}en{LM}: Faster and Smaller Language Model Queries",
    author = "Heafield, Kenneth",
    editor = "Callison-Burch, Chris  and
      Koehn, Philipp  and
      Monz, Christof  and
      Zaidan, Omar F.",
    booktitle = "Proceedings of the Sixth Workshop on Statistical Machine Translation",
    month = jul,
    year = "2011",
    address = "Edinburgh, Scotland",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/W11-2123/",
    pages = "187--197"
}

Contact

For questions or collaborations: gabriel.pirlogeanu@gmail.com

license: apache-2.0