YuE is an open-source foundation model for lyrics-to-song generation: give it lyrics plus a style prompt and it writes a complete vocal song with accompaniment. The YuE2 release (technical report September 2026) adds symbolic planning — it first writes an editable melody-and-chord score in ABC notation, then realizes that score as audio. That score is the key differentiator for creators: you can read the composition, change the hook, and re-render before anyone hears it.
For a YouTube creator the pitch is not “free music” — it is licensing and Content-ID control. Suno makes great songs but its output is uploaded by thousands of other people to distributors, and those uploads land Content-ID claims on your videos. YuE2 renders locally on your own GPU, so nothing is fingerprinted by anyone else, and the model license explicitly lets content creators monetize outputs with no fees and no royalties. The trade-off is a 24 GB VRAM GPU and your own time.
| Item | YuE2 | Suno |
|---|---|---|
| Code license | Apache 2.0 — fully permissive | Proprietary, no source access |
| Model weights | CC BY-NC 4.0 + additional creator permission | Proprietary |
| Monetize own output | Yes, free of charge, no royalties payable — personal users, content creators and musicians are explicitly covered | Paid plans only. Free-plan output is not licensed commercially |
| Upgrading later | N/A — the permission is there from the first render | Buying Pro does not retroactively license songs made on the free plan |
| Academic / research | Free, non-commercial | N/A |
| Company / corporate use | Contact the authors for a commercial weight license | Covered by any paid plan |
| Attribution | Optional but encouraged (credit “YuE2” or #YuE2) | Not required on paid plans |
Read that carefully: an individual creator or musician is inside the free monetization permission. A studio, agency or label shipping YuE2 audio commercially is not — that needs a negotiated license. YuE also asks you not to use it for illegal, harmful, deceptive or unethical purposes.
| Plan | Price | Credits / limits | Commercial rights |
|---|---|---|---|
| YuE2 local | $0 + electricity | Unlimited renders, capped only by your GPU hours | Yes, for creators and musicians |
| Suno Free | $0 | 50 credits/day (~10 songs), no monthly downloads | No |
| Suno Pro | $10/mo, or $8/mo billed yearly | 2,500 credits/mo, 20 song downloads/mo | Yes |
| Suno Premier | $30/mo, or $24/mo billed yearly | 10,000 credits/mo, 60 song downloads/mo, Suno Studio with MIDI | Yes |
Suno credits do not roll over between months, and only paid plans can buy extra credits or extra downloads. A creator publishing one polished track per week hits Pro’s 20-download ceiling fast — which is exactly the workload where a local model costs nothing.
| System / setting | SongBench Avg ↑ | AudioBox PQ ↑ | MuLan ↑ | PER ↓ |
|---|---|---|---|---|
| YuE2 (best-of-8) | 6.9632 | 8.2714 | 0.5051 | 9.79% |
| Mureka 9 | 6.9377 | 8.0226 | 0.4394 | 11.69% |
| Suno v5 | 6.8721 | 8.1698 | 0.5428 | 8.10% |
| YuE2 (standard, 2 picks) | 6.7316 | 8.2598 | 0.5068 | 8.44% |
| Suno v5.5 | 6.7150 | 8.1955 | 0.5089 | 5.96% |
| Suno v4.5 | 6.6995 | 8.2541 | 0.5022 | 5.80% |
| Suno v6 | 6.5562 | 8.1296 | 0.4916 | 7.58% |
| Suno v6 Wild | 6.4195 | 8.1785 | 0.4999 | 7.45% |
| LeVo 2 | 6.3247 | 8.3966 | 0.3542 | 26.12% |
| MiniMax Music 3 | 6.2830 | 8.2825 | 0.3928 | 6.27% |
| HeartMuLa | 6.2483 | 8.2933 | 0.3823 | 10.71% |
| ACE-Step 1.5 | 6.0118 | 8.0518 | 0.4372 | 7.46% |
| YuE 1 (original) | 4.9165 | 7.8683 | 0.2623 | 36.38% |
How to read this honestly: YuE2 only beats Suno when you sample 8 candidates and keep the best. A single YuE2 render (6.7316) sits between Suno v5 (6.8721) and Suno v5.5 (6.7150). The authors state plainly that the gap between the top means is not statistically significant. Suno still leads on MuLan (vocal-lyric alignment) and on PER (phoneme error rate — how cleanly syllables land on notes), which matters if you sing in Korean or Japanese and care about intelligibility. The honest summary: YuE2 matches frontier Suno on average musicality, wins on control, and loses on phoneme precision and turnkey speed. Note the original YuE 1.0 scores far lower (4.9165) — if a tutorial tells you to run “YuE”, check whether it is the v1 branch.
plan/score.abc, have an agent or a text editor change harmony, melody, tempo or song form, and re-render. Suno edits audio, not composition.What you give up: Suno Studio’s MIDI, stem separation, personas, custom voice, 8–30 minute audio upload and instant browser iteration. YuE2 also re-renders the whole recording after a score edit — there is no non-destructive stem-level edit.
git clone https://github.com/multimodal-art-projection/YuE.git
cd YuE
python3.12 -m venv .venv && source .venv/bin/activate
python -m pip install --upgrade pip && python -m pip install .
python examples/generate.py --output outputs/first-song Settings: cot="full" (default — writes an editable melody+chord plan), cot="melody" (melody plan, free accompaniment — use for covers), cot="off" (straight from lyrics and style). Pass abc=... to supply your own score.
song.save_artifacts() does this automatically and it is your provenance record.GitHub: https://github.com/multimodal-art-projection/YuE · YuE2-3B weights: https://huggingface.co/m-a-p/YuE2-3B · Technical report (Sept 2026) linked from the repo · Demo page: https://map-yue.github.io/ · Original YuE paper: arXiv 2503.08638 · WildSongBench prompts and results for reproduction: https://huggingface.co/datasets/m-a-p/WildSongBench