How to use ACE-Step/Ace-Step1.5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-audio", model="ACE-Step/Ace-Step1.5", trust_remote_code=True)
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ACE-Step/Ace-Step1.5", trust_remote_code=True, dtype="auto")
试了试示例空间的效果,速度太惊人了,只是音质明显很差,有没有办法提升呢
If your hardware can support it, you can try the sft model~
如果您的硬件能够支持的话,可以尝试sft模型~
· Sign up or log in to comment