KelvinYang/harp-codec

Model

HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs

1

10 commits

2 linked in READMEs

updated Jul 22, 2026

See the code

README

HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs

HARP is a neural audio codec that partitions residual vector quantization (RVQ) across harmonically meaningful frequency bands, giving high-quality, variable-bitrate audio compression from a single model. A harmonic-aware partitioning distributes codebook capacity across perceptually meaningful bands, so one model serves multiple bitrates by decoding a growing number of codebook groups.

Model details

  • Architecture: convolutional encoder/decoder with grouped RVQ.
  • Codebooks: 9 codebooks × 1024 entries (10 bits each), codebook dim 8.
  • Band groups: 4 groups with a 3-2-2-2 codebook split, ordered by perceptual importance:
    GroupBandCodebooks
    0Bass (~0–1 kHz)3
    1Low-mid (~1–4 kHz)2
    2High-mid (~4–10 kHz)2
    3Treble (~10–22 kHz)2

The bass group is always decoded; adding groups raises quality and bitrate.

Bitrate tiers

With 9 codebooks @ 1024 entries and a ~86 Hz frame rate:

GroupsCodebooksApprox. bitrate
13~2.6 kbps
25~4.3 kbps
37~6.0 kbps
49~7.7 kbps (full)

Files

  • harp.ckpt — slim, inference-ready weights (~293 MB, weights only).

Usage

Set up the GitHub repo (uv sync), download this checkpoint, and reconstruct audio:

uv pip install "huggingface_hub[cli]"
hf download KelvinYang/harp-codec harp.ckpt --local-dir checkpoints

python entry.py -i --input audio.wav --output recon.wav              # full rate
python entry.py -i --input audio.wav --n-groups 2 --output out.wav   # lower bitrate (1..4)

Each run reports SI-SDR, multi-scale mel loss, LSD, and SNR.

Citation

@inproceedings{harp2026,
  title     = {HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs},
  author    = {Yang, Qiaoyu and He, Lixing and Deng, Binyue and Zhao, Weifeng},
  booktitle = {Interspeech},
  year      = {2026}
}

License

MIT

audio
audio-compression
audio-to-audio
harp-codec
interspeech-2026
neural-audio-codec
residual-vector-quantization

Contributors

KelvinYang

10 commits

KelvinYang/harp-codec

Model

HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs

1

10 commits

2 linked in READMEs

updated Jul 22, 2026

See the code

README

HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs

HARP is a neural audio codec that partitions residual vector quantization (RVQ) across harmonically meaningful frequency bands, giving high-quality, variable-bitrate audio compression from a single model. A harmonic-aware partitioning distributes codebook capacity across perceptually meaningful bands, so one model serves multiple bitrates by decoding a growing number of codebook groups.

Model details

  • Architecture: convolutional encoder/decoder with grouped RVQ.
  • Codebooks: 9 codebooks × 1024 entries (10 bits each), codebook dim 8.
  • Band groups: 4 groups with a 3-2-2-2 codebook split, ordered by perceptual importance:
    GroupBandCodebooks
    0Bass (~0–1 kHz)3
    1Low-mid (~1–4 kHz)2
    2High-mid (~4–10 kHz)2
    3Treble (~10–22 kHz)2

The bass group is always decoded; adding groups raises quality and bitrate.

Bitrate tiers

With 9 codebooks @ 1024 entries and a ~86 Hz frame rate:

GroupsCodebooksApprox. bitrate
13~2.6 kbps
25~4.3 kbps
37~6.0 kbps
49~7.7 kbps (full)

Files

  • harp.ckpt — slim, inference-ready weights (~293 MB, weights only).

Usage

Set up the GitHub repo (uv sync), download this checkpoint, and reconstruct audio:

uv pip install "huggingface_hub[cli]"
hf download KelvinYang/harp-codec harp.ckpt --local-dir checkpoints

python entry.py -i --input audio.wav --output recon.wav              # full rate
python entry.py -i --input audio.wav --n-groups 2 --output out.wav   # lower bitrate (1..4)

Each run reports SI-SDR, multi-scale mel loss, LSD, and SNR.

Citation

@inproceedings{harp2026,
  title     = {HARP: Harmonic-Aware Residual Partitioning for Neural Audio Codecs},
  author    = {Yang, Qiaoyu and He, Lixing and Deng, Binyue and Zhao, Weifeng},
  booktitle = {Interspeech},
  year      = {2026}
}

License

MIT

audio
audio-compression
audio-to-audio
harp-codec
interspeech-2026
neural-audio-codec
residual-vector-quantization

Contributors

KelvinYang

10 commits