Model reference · open weights
nemo-nano-codec-22khz-1.78kbps-12.5fps is an open-weight embedding model from nvidia. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | NVIDIA |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Runs with | nemo |
| Released | 2025-08-06 |
| Popularity | 516 downloads / month |
| Licence | Commercial licence needed |
About
img{ display: inline-table; vertical-align: small; margin: 0; padding: 0; } | |
The NeMo NanoCodec is a neural audio codec that leverages finite scalar quantization and adversarial training with large speech language models to achieve state-of-the-art audio compression across different bitrate and frame rate ranges. Model variant details:
| Sample Rate | Frame Rate | Bit Rate | # Codebooks | Codebook Size | Embed Dim | FSQ Levels |
|---|---|---|---|---|---|---|
| 22050 | 12.5 | 1.78kpbs | 13 | 2016 | 52 | [8, 7, 6, 6] |
This model is ready for commercial/non-commercial use.
| Model | Sample Rate | Frame Rate | Bit Rate | # Codebooks | Codebook Size | Embed Dim | FSQ Levels |
|---|---|---|---|---|---|---|---|
| 1.78kbps-12.5fps | 22050 | 12.5 | 1.78kpbs | 13 | 2016 | 52 | [8, 7, 6, 6] |
| 0.6kbps-12.5fps | 22050 | 12.5 | 0.6kpbs | 4 | 4032 | 16 | [9, 8, 8, 7] |
| 1.89kbps-21.5fps | 22050 | 21.5 | 1.89kpbs | 8 | 2016 | 32 | [8, 7, 6, 6] |
⚠️ Note on 0.6kbps-12.5fps This variant is designed for fine-tuning with a limited set of speakers, as shown in our S2S Duplex paper. It is not recommended for general-purpose audio encoding or decoding.
ℹ️ Recommended Variants Both 1.78kbps-12.5fps and 1.89kbps-21.5fps achieve similar audio reconstruction quality. However, our Magpie TTS model performs best with 1.89kbps-21.5fps.
NVIDIA Open Model License Agreement
NeMo NanoCodec is composed of a fully convolutional generator neural network and three discriminators. The generator comprises an encoder, followed by vector quantization, and a HiFi-GAN-based decoder.
The non-causal encoder consists of five residual blocks, each block containing three residual layers similar to the multi-receptive field fusion (MRF) module. The causal decoder, based on the HiFi-GAN vocoder, uses upsampling rates that are the reverse of the encoder's One-Dimensional (1D) convolutional strides.
For the vector quantization, we have used Finite Scalar Quantization (FSQ) with thirteen codebooks and four dimensions per code and 2016 codes per codebook. For the discriminators, we utilize three neural networks, all employing a squared-GAN and feature-matching loss. We adopt the multi-period discriminator, multi-band multi-scale STFT discriminator, and WavLM-based discriminator.
For more details please check our paper.
This model was developed based on NVIDIA Low Frame-rate Speech Codec
** This model has 62M of model parameters.**
Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.
The model is available for use in the NVIDIA NeMo, and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.
For inference, you can refer to our Audio Codec Inference Tutorial, which automatically downloads the model checkpoint. Ensure that you set the model_name parameter to "nvidia/nemo-nano-codec-22khz-1.78kbps-12.5fps".
Alternatively, you can use the code below, which also handles the automatic checkpoint download:
import librosa
import torch
import soundfile as sf
from nemo.collections.tts.models import AudioCodecModel
path_to_input_audio = ??? # path of the input audio
path_to_output_audio = ??? # path of the reconstructed output audio
# load audio codec model
nemo_codec_model = AudioCodecModel.from_pretrained("nvidia/nemo-nano-codec-22khz-1.78kbps-12.5fps").eval()
# get discrete tokens from audio
audio, _ = librosa.load(path_to_input_audio, sr=nemo_codec_model.sample_rate)
device = 'cuda' if torch.cuda.is_available() else 'cpu'
audio_tensor = torch.from_numpy(audio).unsqueeze(dim=0).to(device)
audio_len = toFrom the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys nemo-nano-codec-22khz-1-78kbps-12-5fps for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (nemo-nano-codec-22khz-1-78kbps-12-5fps below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"nemo-nano-codec-22khz-1-78kbps-12-5fps","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.