AI SeedbankHelp preserve open and free AI for humanity's future

← All models

charactr_vocos-mel-24khz

charactr · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: mit

Vocos: Closing the gap between time-domain and Fourier-based neural vocoders for high-quality audio synthesis

Audio samples | Paper [abs] [pdf]

Vocos is a fast neural vocoder designed to synthesize audio waveforms from acoustic features. Trained using a Generative Adversarial Network (GAN) objective, Vocos can generate waveforms in a single forward pass. Unlike other typical GAN-based vocoders, Vocos does not model audio samples in the time domain. Instead, it generates spectral coefficients, facilitating rapid audio reconstruction through inverse Fourier transform.

Installation

To use Vocos only in inference mode, install it using:

pip install vocos

If you wish to train the model, install it with additional dependencies:

pip install vocos[train]

Usage

Reconstruct audio from mel-spectrogram

import torch

from vocos import Vocos

vocos = Vocos.from_pretrained("charactr/vocos-mel-24khz")

mel = torch.randn(1, 100, 256)  # B, C, T
audio = vocos.decode(mel)

Copy-synthesis from a file:

import torchaudio

y, sr = torchaudio.load(YOUR_AUDIO_FILE)
if y.size(0) > 1:  # mix to mono
    y = y.mean(dim=0, keepdim=True)
y = torchaudio.functional.resample(y, orig_freq=sr, new_freq=24000)
y_hat = vocos(y)

Citation

If this code contributes to your research, please cite our work:

@article{siuzdak2023vocos,
  title={Vocos: Closing the gap between time-domain and Fourier-based neural vocoders for high-quality audio synthesis},
  author={Siuzdak, Hubert},
  journal={arXiv preprint arXiv:2306.00814},
  year={2023}
}

License

The code in this repository is released under the MIT license.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:c1f34eaad290431037a43143f3e2b85238a3da3d&dn=charactr_vocos-mel-24khz

Open magnet in torrent client · infohash c1f34eaad290431037a43143f3e2b85238a3da3d

Files & hashes

PathSizesha1sha256
README.md1.8 KB (1,830 B)226bd9452b8561a28a5633a4e1576e883984cc5f5858497d76d58914b29958a0f448e7b4fd3bb54940100baaa7520d4a56d8b3df
config.yaml461 B (461 B)538262138a8b43863802f279909f26ec31c766b3da9033922f969a47f0c160010226919e59f27761fd5066f3828d46de6650b0fc
pytorch_model.bin51.8 MB (54,365,991 B)fa08cc91063071c71016a90b57183df9da3b6dbb97ec976ad1fd67a33ab2682d29c0ac7df85234fae875aefcc5fb215681a91b2a

Cite this release

Canonical URL
https://aiseedbank.org/models/charactr_vocos-mel-24khz/
Slug
charactr_vocos-mel-24khz
Infohash
c1f34eaad290431037a43143f3e2b85238a3da3d
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: charactr_vocos-mel-24khz.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorycharactr/vocos-mel-24khz
Revision (pinned)0feb3fdd929bcd6649e0e7c5a688cf7dd012ef21
Fetched at2026-09-03T21:11:44Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T21:11:46Z

mit51.8 MB (54,368,282 bytes)pytorchpaper: 2306.00814