CoolFace
Modelpublic

davidmeikle/whisper-large-v2-eole

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes19downloads
Model Card

Whisper Large V2 (eole)

This is openai/whisper-large-v2 converted to eole format using eole convert --model_dir openai/whisper-large-v2.

No weights were modified — this is a format conversion only.

Model details

Original modelopenai/whisper-large-v2
Parameters1.55B
Encoder layers32
Decoder layers32
Hidden size1280
Attention heads20
Mel bins80
Vocab size51,865
LicenseApache 2.0

Usage

bash
pip install eole[wer]

Transcribe

bash
eole predict \
  -config eval_config.yaml \
  -model_path whisper-large-v2-eole \
  -src audio_files.txt \
  -output transcriptions.txt \
  -language en \
  -task transcribe \
  -gpu_ranks 0

Evaluation

All evaluations use beam size 5.

BenchmarkWER
LibriSpeech test-clean2.44%

Conversion

bash
eole convert --model_dir openai/whisper-large-v2 --output whisper-large-v2-eole

Citation

bibtex
@misc{radford2023robust,
      title={Robust Speech Recognition via Large-Scale Weak Supervision},
      author={Alec Radford and Jong Wook Kim and Tao Xu and Greg Brockman and Christine McLeavey and Ilya Sutskever},
      year={2023},
      eprint={2212.04356},
      archivePrefix={arXiv},
      primaryClass={eess.AS}
}