Instructions to use AEmotionStudio/acestep-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AEmotionStudio/acestep-models with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AEmotionStudio/acestep-models", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Mirror config.json from ACE-Step/ACE-Step-v1-chinese-rap-LoRA
Browse files
checkpoints/loras/chinese-rap/config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"r": 256,
|
| 3 |
+
"lora_alpha": 32,
|
| 4 |
+
"target_modules": [
|
| 5 |
+
"speaker_embedder",
|
| 6 |
+
"linear_q",
|
| 7 |
+
"linear_k",
|
| 8 |
+
"linear_v",
|
| 9 |
+
"to_q",
|
| 10 |
+
"to_k",
|
| 11 |
+
"to_v",
|
| 12 |
+
"to_out.0"
|
| 13 |
+
],
|
| 14 |
+
"use_rslora": true
|
| 15 |
+
}
|