๐ŸŽ™๏ธ SimWhisper-Codec

January 28, 2026 ยท View on GitHub

๐ŸŽ™๏ธ SimWhisper-Codec

Speaking Clearly: A Simplified Whisper-Based Codec for Low-Bitrate Speech Coding

SimWhisper-Codec Architecture

Demo paper Hugging Face

A semantic-first speech codec that achieves superior performance through architectural simplification rather than complex supervision.


โœจ Highlights

  • ๐Ÿš€ low Bitrate: Only 1.1 kbps at 16 kHz sampling rate
  • ๐Ÿ”Š High Quality Speech Reconstruction: Achieving UTMOS 4.00 WER 2.75 (hubert-large-ls960-ft) sim 0.83 (wavlm_large_finetune) stoi 0.93 pesq-nb 3.29 pesq-wb 2.72 on librispeech-test-clean reconstruction (gt: WER 2.16 UTMOS 4.09)
  • ๐ŸŒ Strong Generalization: Trained only on LibriSpeech, yet performs well on out-of-domain data (LJSpeech, THCHS30)
  • ๐ŸงŠ Frozen Encoder: No fine-tuning of Whisper encoder required
  • โšก Simple & Efficient: Architectural simplification over complex supervision

๐Ÿ“Š Performance

In-Domain Evaluation (LibriSpeech test-clean)

ModelBitrateWER โ†“PESQ-NB โ†‘PESQ-WB โ†‘STOI โ†‘SIM โ†‘UTMOS โ†‘
XCodec2.00.8 kbps2.613.042.430.920.824.13
XY-Tokenizer1.0 kbps2.463.102.500.920.854.03
BigCodec1.04 kbps2.923.272.680.930.844.11
SimWhisper-Codec1.1 kbps2.753.292.720.930.834.00

Out-of-Domain Generalization

Evaluation on Seed-TTS-Eval Dataset

Model Bitrate SEED-ZH SEED-EN
PESQ-NB โ†‘ PESQ-WB โ†‘ SIM โ†‘ STOI โ†‘ PESQ-NB โ†‘ PESQ-WB โ†‘ SIM โ†‘ STOI โ†‘
XCodec2.0 0.8 kbps 2.69 2.10 0.81 0.89 2.57 2.01 0.78 0.89
XY-Tokenizer 1.0 kbps 2.97 2.32 0.88 0.90 2.75 2.18 0.82 0.90
BigCodec 1.04 kbps 2.88 2.26 0.80 0.91 2.80 2.22 0.80 0.91
SimWhisper-Codec 1.1 kbps 3.30 2.38 0.82 0.91 2.88 2.29 0.80 0.91
DatasetLanguageSamplesPESQ-WB โ†‘PESQ-NB โ†‘STOI โ†‘
LJSpeechEnglish2,6202.793.300.94
THCHS-30Chinesetest set2.633.210.91

SimWhisper-Codec is trained exclusively on LibriSpeech, demonstrating strong cross-lingual generalization.

๐Ÿš€ Quick Start

Installation

# Clone repository
git clone https://github.com/ZhangXinWhut/SimWhisper-Codec.git && cd SimWhisper-Codec

# Create and activate conda environment
conda create -n swcodec python=3.10 -y && conda activate swcodec

# Install dependencies
pip install -r requirements.txt

Available Models ๐Ÿ—‚๏ธ

Model NameHugging FaceTraining Data
SimWhisper-Codec๐Ÿค—LibriSpeech

Download Model Weights

You need to download the SimWhisper-Codec model weights. You can find the weights in the SimWhisper-Codec Hugging Face repository.

mkdir -p ./weights && huggingface-cli download xxx123456/SimWhisper_Codec SimWhisperCodec.pt --local-dir ./weights/

Inference

python inference.py --input_dir /path/to/LibriSpeech/test-clean

The reconstructed audio files will be available in the output_wavs/ directory.

๐Ÿ™ Acknowledgements

Our codebase builds upon the XY-Tokenizer. We thank the authors for their excellent work.

๐Ÿ“ Citation

If you find this work useful in your research, please cite our paper:

@misc{zhang2025speakingclearlysimplifiedwhisperbased,
      title={Speaking Clearly: A Simplified Whisper-Based Codec for Low-Bitrate Speech Coding}, 
      author={Xin Zhang and Lin Li and Xiangni Lu and Jianquan Liu and Kong Aik Lee},
      year={2025},
      eprint={2510.20504},
      archivePrefix={arXiv},
      primaryClass={cs.SD},
      url={https://arxiv.org/abs/2510.20504}, 
}

๐Ÿ“œ License

This project is licensed under the Apache 2.0 License.