CoolFace
Modelpublic

Phaedrus33/parakeet-tdt-0.6b-v3-children-v11

sourceHugging Facecc-by-4.0updated 6mo agoView on Hugging Face
0likes44downloads
Model Card

parakeet-tdt-0.6b-v3 - Fine-tuned on Children's Speech

Fine-tuned from nvidia/parakeet-tdt-0.6b-v3 on children's speech data from the DrivenData ASR competition.

Training config

  • —Mode: full
  • —Epochs: 15
  • —Batch size: 12 (accumulate: 2)
  • —Learning rate: 0.0001
  • —Precision: bf16-mixed
  • —Speed perturbation: True

Usage

python
import nemo.collections.asr as nemo_asr

model = nemo_asr.models.ASRModel.restore_from("best_model.nemo")
hypotheses = model.transcribe(["audio.flac"])
print(hypotheses[0].text)