how can we fix the message "Passing `scale` via `joint_attention_kwargs` when not using the PEFT backend is ineffective."

#13
by rjac - opened

When running the code

image = pipe(
    "A cat holding a sign that says hello world",
    negative_prompt="",
    num_inference_steps=28,
    guidance_scale=7.0,
).images[0]
image

I am getting the warning

Passing `scale` via `joint_attention_kwargs` when not using the PEFT backend is ineffective.

Hi, I have the same problem.

I Installed peft as follows and the warning disappeared.

pip install peft

Sign up or log in to comment