model release

MiniMax Releases Music 3, an Open-Weight Model for Generating Full 5-Minute Songs

TL;DR

MiniMax released Music 3, an open-weight music generation model that produces complete songs up to five minutes long from lyrics and text descriptions. The model combines an 8B and 0.6B language model pair with a Flow Matching synthesis system to output 32 kHz stereo audio.

3 min read
0

What happened

MiniMax AI published MiniMax Music 3 on Hugging Face, an open-weight text-to-music model that generates complete songs — vocals, instrumentation, and arrangement — up to five minutes long from lyrics and a text description. The model weights, inference recipes, and demo are publicly available under the MiniMaxAI organization on Hugging Face.

Architecture and technical specs

Music 3 uses a hierarchical, three-part pipeline rather than a single monolithic model:

  • Global LLM (8B parameters): Initialized from Qwen3-8B, this model predicts the first Residual Vector Quantization (RVQ) codebook frame-by-frame and governs long-range structure — verse/chorus progression, vocal identity, and thematic coherence across the full song.
  • Local LLM (0.6B parameters): Predicts the remaining seven acoustic RVQ codebooks per frame, restoring fine-grained acoustic detail.
  • Flow Matching module (2.4B parameters) and Flow-VAE Decoder (123M parameters): Fuses the hidden states from both LLMs into continuous representations, then decodes them into audio — bypassing discrete token decoding at inference time. This synthesis stack is adapted from MiniMax's speech model (MiniMax Speech), retrained for music's dynamic range.

The training tokenizer uses eight RVQ codebook layers: one semantic codebook with 16,384 entries capturing musical structure, and seven acoustic codebooks with 1,024 entries each for residual detail. Output is 32 kHz, 16-bit stereo WAV audio.

Inputs are lyrics (with optional section tags like [Verse], [Chorus], [Bridge]) and a music description covering genre, BPM, key, vocal style, and instrumentation — MiniMax recommends a structured three-part caption format for finer control.

Limitations, according to MiniMax

The model card lists several constraints: inference requires CUDA (no CPU-only path), only non-streaming generation is currently supported, text prompts are capped at 5,000 tokens, and audio generation is limited to 9,000 acoustic frames (at 25 frames per second, roughly six minutes of raw frame budget). Section tags and descriptions provide generative guidance rather than strict enforcement — the company notes outputs may not perfectly match every specified instruction.

Availability

Music 3 is supported through SGLang-Omni for serving, Hugging Face's diffusers library as a modular pipeline, and ComfyUI. MiniMax says the full-precision model fits under 24GB of VRAM, and with automatic CPU offloading plus layer-by-layer streaming of the language model, it can run on 8GB GPUs. No commercial API pricing has been published alongside the open weights; pricing not yet disclosed for any hosted version.

What this means

MiniMax is extending its speech-model architecture (Flow-VAE from MiniMax Speech) into music generation, and doing so with an open-weight release rather than a closed API — a departure from how competitors like Suno and ElevenLabs have approached music generation, largely through hosted products. The five-minute coherence target and explicit structural tagging (intro/verse/chorus/outro) address a known weak point in AI music tools: maintaining thematic and vocal consistency over long generations rather than just producing short, disjointed loops. Because weights, inference code, and a diffusers integration are all public, independent verification of MiniMax's structural-coherence and audio-quality claims should follow quickly from the open-source community — a check that closed, API-only music models rarely receive.

Related Articles

model release

Meta's Muse Spark 1.3 Claims #3 Global Ranking, Matches OpenAI's GPT-5.6-Sol on Coding Benchmarks

Meta Superintelligence Labs shipped Muse Spark 1.3, which the company claims ranks #3 globally on the Artificial Analysis Intelligence Index and matches OpenAI's GPT-5.6-Sol on coding and agentic benchmarks. The model is available now via Muse Code and Meta's API, with open weights and a follow-up model promised soon.

model release

OpenAI's GPT-6 Astra Cuts Hallucinations, But Indirect Prompt Injection Attacks Still Succeed 8.5% of the Time

OpenAI's new GPT-6 Astra model shows major improvements in hallucination rates and jailbreak resistance over predecessor GPT-5.6 Sol, according to OpenAI's system card. However, indirect prompt injection attacks hidden in documents still succeed 8.5% of the time in external testing by Gray Swan, down from 27% but still above rival Claude Opus 5's 4.8% rate.

model release

OpenAI Ships GPT-6 Astra, But Executives Admit They Can't Fully Monitor What It's Thinking

OpenAI released GPT-6 Astra on Thursday, a model president Greg Brockman says could mark the start of AGI. But the model writes out its reasoning less often than prior versions, and OpenAI's chief scientist says monitoring AI thought processes will keep getting harder.

model release

OpenAI Launches GPT-6 Astra, Claims SOTA Computer Use and Coding — But Independent Tests Show Mixed Gains at Higher Cost

OpenAI released GPT-6 Astra on September 3, 2026, claiming state-of-the-art computer use and coding performance alongside new alignment techniques. Independent evaluators found real but uneven gains, higher per-task costs, and reduced chain-of-thought monitorability.

Comments

Loading...