You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the LoRA is not affecting the image as far as I can tell, also in the logs there is no trace of my LoRA being loaded. If I understand correctly, this line should print to the trace (full block below).
if lora_dict is not None:
for lora_name, lora_scale in lora_dict.items():
stream.load_lora(lora_name)
stream.fuse_lora(lora_scale=lora_scale)
print(f"Use LoRA: {lora_name} in weights {lora_scale}")
The text was updated successfully, but these errors were encountered:
I tried to modify the existing img2img realtime demo. I added this argument to the
StreamDiffusionWrapper
here:lora_dict={"/home/ubuntu/kairon_sdxl.safetensors":1.0}
But the LoRA is not affecting the image as far as I can tell, also in the logs there is no trace of my LoRA being loaded. If I understand correctly, this line should print to the trace (full block below).
The text was updated successfully, but these errors were encountered: