ArtificialGuyBR

Home / Blog / Training LoRAs

AceStep Refine Redmond: DPO LoRA for Better Music Generation

DPO-refined LoRA adapter for ACE-Step 1.5 Turbo improving musicality, arrangement coherence, and vocal character in text-to-audio generation.

1 sources cited Training LoRAs

AceStep Refine Redmond: DPO LoRA for Better Music Generation

TL;DR

What This Model Does

AceStep Refine Redmond is a LoRA adapter that improves the output quality of ACE-Step 1.5 Turbo (acestep-v15-turbo) for text-to-audio generation. The refinement targets three specific areas: musicality, arrangement coherence, and vocal character. It was developed using GPU compute sponsored by Redmond.AI.

The adapter is compatible with the ACE-Step pipeline and comes in two formats:

For best prompting results, the author recommends using the acestep-5Hz-lm-4B language model for composition and prompt engineering.

Training Details

The model was trained in two stages:

  1. Large-dataset LoRA fine-tuning: 75 epochs on the base acestep-v15-turbo checkpoint
  2. DPO refinement: Direct Preference Optimization on top of the epoch-75 adapter, continued up to epoch 81

LoRA configuration:

In blind A/B testing against the base ACE-Step 1.5 Turbo, this refinement achieved approximately 70% win rate across multiple users.

How to Use

Standard ACE-Step (PEFT)

from acestep.pipeline import ACEStepPipeline

pipe = ACEStepPipeline.from_pretrained(
    "ACE-Step/Ace-Step1.5",
    adapter_name_or_path="artificialguybr/AceStep_Refine_Redmond",
    subfolder="standard"
)

ComfyUI

Place the file from comfyui/ in your ComfyUI models/loras/ directory and load it as a standard LoRA.

Known Limitations

Responsible Use

License

MIT License — see the Hugging Face model card for details.

Common Errors and Fixes

Error | Cause | Fix | Source

|-------|-------|-----|--------

LoRA not loading in ComfyUI | Wrong file path or format | Use the comfyui/ single-file export, place in models/loras/ | Model card Vocal instability | Sparse/underspecified prompt | Use descriptive prompts with acestep-5Hz-lm-4B for composition | Model card High-frequency harshness | Very dense arrangement prompts | Simplify arrangement density in prompt | Model card

FAQ

Q: What base model does this LoRA require? A: ACE-Step/Ace-Step1.5 (acestep-v15-turbo). It will not work with other ACE-Step versions.

Q: Can I merge this LoRA into the base model? A: Yes, standard PEFT merging tools can merge the standard/ adapter into the base model weights.

Q: Is this model commercial-use friendly? A: Yes, MIT license permits commercial use. Review the responsible use guidelines regarding artist impersonation and voice rights.

Q: What's the difference between the standard and comfyui folders? A: standard/ is a PEFT adapter directory for programmatic loading. comfyui/ is a single .safetensors file for drag-and-drop ComfyUI use.

Sources