Describe the ACE-Step 1.5 XL Turbo GGUF
Browse files
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
base_model:
|
| 4 |
+
- ACE-Step/acestep-v15-xl-turbo
|
| 5 |
+
pipeline_tag: text-to-audio
|
| 6 |
+
tags:
|
| 7 |
+
- gguf
|
| 8 |
+
- ace-step
|
| 9 |
+
- text-to-music
|
| 10 |
+
- audio.cpp
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# audio.cpp GGUF
|
| 14 |
+
|
| 15 |
+
GGUF conversions of music and speech models for
|
| 16 |
+
[audio.cpp](https://github.com/0xShug0/audio.cpp), the ggml-based native audio
|
| 17 |
+
inference framework.
|
| 18 |
+
|
| 19 |
+
## ACE-Step 1.5 XL Turbo (bf16)
|
| 20 |
+
|
| 21 |
+
`ACE-Step1.5-GGUF/xl-turbo/ace-step-1.5-xl-turbo-bf16.gguf` — 14.2 GB.
|
| 22 |
+
|
| 23 |
+
The XL DiT is the larger ACE-Step 1.5 transformer: 32 layers of 2560 against
|
| 24 |
+
turbo's 24 of 2048, with 32 attention heads of 128. The file is self-contained
|
| 25 |
+
the way audio.cpp's other ACE-Step GGUFs are — XL DiT, planner LM, text encoder
|
| 26 |
+
and VAE in one file — so it needs no other download.
|
| 27 |
+
|
| 28 |
+
Converted from [ACE-Step/acestep-v15-xl-turbo](https://huggingface.co/ACE-Step/acestep-v15-xl-turbo)
|
| 29 |
+
(float32 upstream) with `audiocpp_gguf --type bf16`.
|
| 30 |
+
|
| 31 |
+
### Install
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
python tools/model_manager_v2.py install ace_step_xl_turbo_bf16
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
### Run
|
| 38 |
+
|
| 39 |
+
The DiT variant is a load option, so name it explicitly:
|
| 40 |
+
|
| 41 |
+
```bash
|
| 42 |
+
audiocpp_cli --task gen --family ace_step --model models/ACE-Step1.5-GGUF/xl-turbo \
|
| 43 |
+
--backend cuda --task-route text2music \
|
| 44 |
+
--text "warm lo-fi hip hop with a soft rhodes piano" --duration-seconds 60 \
|
| 45 |
+
--load-option ace_step.dit_model_path=acestep-v15-xl-turbo --out song.wav
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
Measured on an RTX 5090 (CUDA), 20 s of audio in 15 s including model load.
|
| 49 |
+
|
| 50 |
+
XL support landed in audio.cpp via
|
| 51 |
+
[PR #235](https://github.com/0xShug0/audio.cpp/pull/235); see
|
| 52 |
+
`docs/models/ace_step.md` there for the full option reference and for rebuilding
|
| 53 |
+
this file yourself.
|
| 54 |
+
|
| 55 |
+
Weights are MIT-licensed by ACE-Step; this repository only redistributes them in
|
| 56 |
+
a different container format.
|