ctc-dro_xlsr_set_3 / README.md
Bartelds
Upload checkpoint, sanitized config, and transcripts for ctc-dro_xlsr_set_3
d2e25dd
metadata
title: CTC-DRO XLSR-based ASR model - set 3
language: multilingual
tags:
  - asr
  - ctc-dro
  - XLSR
license: cc-by-nc-4.0

CTC-DRO XLSR-based ASR model - set 3

This repository contains a CTC-DRO XLSR-based automatic speech recognition (ASR) model trained with ESPnet.
The model was trained on balanced training data from set 3.

Intended Use

This model is intended for ASR. Users can run inference using the provided checkpoint (valid.loss.best.pth) and configuration file (config.yaml):

import soundfile as sf
from espnet2.bin.asr_inference import Speech2Text

asr_train_config = "ctc-dro_xlsr_set_3/config.yaml"
asr_model_file = "ctc-dro_xlsr_set_3/valid.loss.best.pth"

model = Speech2Text.from_pretrained(
    asr_train_config=asr_train_config,
    asr_model_file=asr_model_file
)

speech, _ = sf.read("input.wav")
text, *_ = model(speech)[0]

print("Recognized text:", text)

How to Use

  1. Clone this repository.
  2. Use ESPnet’s inference scripts with the provided config.yaml and checkpoint file.
  3. Ensure any external resources referenced in config.yaml are available at the indicated relative paths.