Upload epoch2 LoRA checkpoint
Browse files- README.md +39 -0
- adapter_config.json +20 -0
- pytorch_lora_weights.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- ace-step
|
| 5 |
+
- lora
|
| 6 |
+
- music-generation
|
| 7 |
+
- text-to-music
|
| 8 |
+
base_model: ACE-Step/ACE-Step-v1-3.5B
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# ACE-Step LoRA - Nugi Style
|
| 12 |
+
|
| 13 |
+
A LoRA fine-tuned on ACE-Step for R&B/Soul/Electronic music style.
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
from acestep.pipeline_ace_step import ACEStepPipeline
|
| 19 |
+
|
| 20 |
+
pipeline = ACEStepPipeline(checkpoint_dir=None, dtype="bfloat16")
|
| 21 |
+
|
| 22 |
+
pipeline(
|
| 23 |
+
audio_duration=60,
|
| 24 |
+
prompt='r&b, soul, electronic, male vocal, emotional, melancholic',
|
| 25 |
+
lyrics='[verse]\nYour lyrics here',
|
| 26 |
+
lora_name_or_path="Cdomkam/nugi-lora-epoch2",
|
| 27 |
+
lora_weight=0.8, # Adjust 0.0-1.0
|
| 28 |
+
save_path='output.wav',
|
| 29 |
+
)
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Training Details
|
| 33 |
+
|
| 34 |
+
- **Base Model**: ACE-Step-v1-3.5B
|
| 35 |
+
- **LoRA Rank**: 256
|
| 36 |
+
- **Alpha**: 32
|
| 37 |
+
- **Training Data**: 46 R&B/Soul/Electronic tracks
|
| 38 |
+
- **Epochs**: 5
|
| 39 |
+
- **Checkpoint**: epoch2
|
adapter_config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model_name_or_path": "ACE-Step/ACE-Step-v1-3.5B",
|
| 3 |
+
"r": 256,
|
| 4 |
+
"lora_alpha": 32,
|
| 5 |
+
"lora_dropout": 0.0,
|
| 6 |
+
"target_modules": [
|
| 7 |
+
"speaker_embedder",
|
| 8 |
+
"linear_q",
|
| 9 |
+
"linear_k",
|
| 10 |
+
"linear_v",
|
| 11 |
+
"to_q",
|
| 12 |
+
"to_k",
|
| 13 |
+
"to_v",
|
| 14 |
+
"to_out.0"
|
| 15 |
+
],
|
| 16 |
+
"use_rslora": true,
|
| 17 |
+
"peft_type": "LORA",
|
| 18 |
+
"task_type": null,
|
| 19 |
+
"inference_mode": true
|
| 20 |
+
}
|
pytorch_lora_weights.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bcbf1cfee6470d8426ddbb705f758651bb81e84415f493bd374e6706e82ce9fe
|
| 3 |
+
size 1047580992
|