Views
No views yet
tempo (ACE-Step)AUSteerSteeringController adds alpha along the top-k most concept-discriminative bins.1from src.steering import SteerableACEModel, AUSteerSteeringController
2
3model = SteerableACEModel(device="cuda")
4model.pipeline.load()
5ctrl = AUSteerSteeringController.from_pretrained(
6 "lukasz-staniszewski/ace-step-austeer-tempo-tf6tf7", alpha=15.0, k=256, mode="additive",
7)
8
9with model.steer(ctrl):
10 audio = model.generate(
11 prompt="instrumental music", lyrics="[inst]",
12 audio_duration=10.0, infer_step=30, manual_seed=0,
13 )1{
2 "method": "austeer",
3 "concept": "tempo",
4 "lyrics": "[inst]",
5 "layers": "tf6tf7",
6 "layers_collected": [
7 "tf6",
8 "tf7"
9 ],
10 "num_inference_steps": 30,
11 "audio_duration": 30.0,
12 "seed": 10,
13 "guidance_scale": 5.0,
14 "guidance_scale_text": 0.0,
15 "guidance_scale_lyric": 0.0,
16 "guidance_interval": 1.0,
17 "guidance_interval_decay": 0.0
18}