MiniMax-Music3

Philpax1 pts0 comments

MiniMaxAI/MiniMax-Music3 · Hugging Face

Log In<br>Sign Up

MiniMax Music 3

MiniMax Music 3 is a high-performance music generation model for creating complete songs up to five minutes long. Conditioned on lyrics and a detailed music description, it generates structurally coherent songs with expressive vocals, evolving arrangements, and stable long-form audio quality.

MiniMax Music 3 combines an 8B Global LLM for long-range musical structure, a 0.6B Local LLM for frame-level acoustic detail, and a continuous hidden-state synthesis system based on Flow Matching and Flow-VAE . The model produces 32 kHz, 16-bit stereo WAV audio.

Demo

Explore music generation examples on the MiniMax Music 3 Demo.

Complete Songs with Long-Range Coherence

MiniMax Music 3 natively supports full-song generation up to five minutes. The model maintains musical themes, rhythm, vocal identity, and arrangement progression across long sequences, enabling complete structures such as intro, verse, pre-chorus, chorus, bridge, instrumental break, and outro.

Fine-Grained Music Control

The model accepts two complementary inputs:

Lyrics define the words to be sung and may include explicit section tags such as [Intro], [Verse], [Pre-Chorus], [Chorus], [Post-Chorus], [Bridge], [Instrumental], [Solo], and [Outro].

Music description defines the musical style, emotional progression, vocal performance, instrumentation, arrangement, and production profile.

For precise control, we recommend using a Structured Caption with three sections:

Global Metadata : genre, subgenre, BPM, key, scale, emotional progression, listening scenario, and production profile.

Vocal Details : vocal gender, timbre, performance style, harmony, backing vocals, and vocal effects.

Arrangement : primary and secondary instruments, section-level instrument evolution, groove, bass, percussion, textures, and spatial effects.

This representation allows the model to follow not only a global style, but also the musical development of the song over time.

Hybrid-LM

MiniMax Music 3 uses a hierarchical autoregressive architecture that separates global musical modeling from local acoustic modeling.

The Global LLM (8B) predicts the first RVQ codebook frame by frame and models the song's long-range semantic and structural progression.

The Local LLM (0.6B) predicts the remaining acoustic codebooks within each frame and restores fine-grained acoustic information.

The Global LLM is initialized from Qwen3-8B. During training, its embedding and output layers are first adapted to semantic music tokens. The Global and Local LLMs are then jointly trained to model all RVQ codebooks.

Continuous Hidden-State Synthesis

Instead of decoding only from discrete RVQ tokens, the synthesis module fuses the final hidden states of the Global and Local LLMs. These continuous representations preserve richer acoustic information for vocal articulation, instrumental texture, and temporal continuity.

The synthesis path is:

Global and Local LLM hidden states<br>Hidden-state fusion<br>Flow Matching (2.4B)<br>Flow-VAE latent<br>Flow-VAE Decoder (123M)<br>32 kHz stereo audio

The Flow-VAE architecture is adapted from MiniMax Speech and retrained for the dynamic range and spectral characteristics of music.

Music Tokenizer

The training tokenizer uses eight layers of Residual Vector Quantization (RVQ):

The first semantic codebook contains 16,384 entries and captures the core musical semantics and structure.

The remaining seven acoustic codebooks contain 1,024 entries each and represent residual acoustic details.

Training first optimizes the semantic codebook, then jointly trains all eight codebooks. At inference time, waveform synthesis uses the fused LLM hidden states and does not require the discrete tokenizer decoder.

How to Use

MiniMax Music 3 is supported by SGLang-Omni. Follow the official installation guide to prepare the runtime environment.

Download the Model

hf download MiniMaxAI/MiniMax-Music3 --local-dir /path/to/minimax_ttm

We recommend the following inference frameworks to serve the model:

SGLang - see cookbook

diffusers - see diffusers docs

ComfyUI - see Comfy tutorial;

Serve with SGLang-Omni

sgl-omni serve \<br>--model-path /path/to/minimax_ttm \<br>--port 8000

Generate Music

The service uses the shared speech API. Put the lyrics in input and the music description in instructions. Put lyric structure tags such as [Verse] and [Chorus] on their own lines.

curl http://127.0.0.1:8000/v1/audio/speech \<br>-H 'Content-Type: application/json' \<br>-d '{<br>"model": "MiniMaxAI/MiniMax-Music3",<br>"input": "[Verse]\nMorning light filtering through the pine\n[Chorus]\nSoftly the world begins to breathe",<br>"instructions": "A warm acoustic pop song with intimate female vocals, fingerpicked guitar, soft piano, and a gradual emotional build into a wide final chorus.",<br>"response_format": "wav",<br>"seed": 7,<br>"max_new_tokens": 750,<br>"stream": false<br>}' \<br>--output minimax_music3.wav

max_new_tokens sets the maximum number of...

music minimax model global acoustic chorus

Related Articles