CaptainArni commited on
Commit
3aa5eef
·
verified ·
1 Parent(s): 79f930b

Add the XL SFT GGUF to the README

Browse files
Files changed (1) hide show
  1. README.md +13 -7
README.md CHANGED
@@ -2,6 +2,7 @@
2
  license: mit
3
  base_model:
4
  - ACE-Step/acestep-v15-xl-turbo
 
5
  pipeline_tag: text-to-audio
6
  tags:
7
  - gguf
@@ -16,17 +17,21 @@ 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
 
@@ -45,7 +50,8 @@ audiocpp_cli --task gen --family ace_step --model models/ACE-Step1.5-GGUF/xl-tur
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
 
2
  license: mit
3
  base_model:
4
  - ACE-Step/acestep-v15-xl-turbo
5
+ - ACE-Step/acestep-v15-xl-sft
6
  pipeline_tag: text-to-audio
7
  tags:
8
  - gguf
 
17
  [audio.cpp](https://github.com/0xShug0/audio.cpp), the ggml-based native audio
18
  inference framework.
19
 
20
+ ## ACE-Step 1.5 XL (bf16)
21
 
22
+ | File | Size | Package | Upstream |
23
+ |---|---:|---|---|
24
+ | `ACE-Step1.5-GGUF/xl-turbo/ace-step-1.5-xl-turbo-bf16.gguf` | 14.2 GB | `ace_step_xl_turbo_bf16` | [acestep-v15-xl-turbo](https://huggingface.co/ACE-Step/acestep-v15-xl-turbo) |
25
+ | `ACE-Step1.5-GGUF/xl-sft/ace-step-1.5-xl-sft-bf16.gguf` | 14.2 GB | `ace_step_xl_sft_bf16` | [acestep-v15-xl-sft](https://huggingface.co/ACE-Step/acestep-v15-xl-sft) |
26
 
27
  The XL DiT is the larger ACE-Step 1.5 transformer: 32 layers of 2560 against
28
+ turbo's 24 of 2048, with 32 attention heads of 128. Each file is self-contained
29
  the way audio.cpp's other ACE-Step GGUFs are — XL DiT, planner LM, text encoder
30
+ and VAE in one file — so neither needs another download.
31
 
32
+ XL Turbo is guidance-distilled and ignores `guidance_scale`; XL SFT takes the
33
+ CFG path. Both were converted from the float32 upstream snapshots with
34
+ `audiocpp_gguf --type bf16`.
35
 
36
  ### Install
37
 
 
50
  --load-option ace_step.dit_model_path=acestep-v15-xl-turbo --out song.wav
51
  ```
52
 
53
+ Measured on an RTX 5090 (CUDA), 20 s of audio in 15 s including model load,
54
+ either variant.
55
 
56
  XL support landed in audio.cpp via
57
  [PR #235](https://github.com/0xShug0/audio.cpp/pull/235); see