Diffusers bug: "UNet2DConditionModel" has no attribute "weight"

584 Views Asked by At

When using the official script "convert_lora_safetensor_to_diffusers.py", I tried to load a basemodel by using pipeline = StableDiffusionPipeline.from_pretrained(base_model_path, torch_dtype=torch.float32) and combine it with lora weights.

curr_layer = pipeline.unet

curr_layer.weight.data += alpha * torch.mm(weight_up, weight_down)

And this error appeared:

Modulist Object has no attribute weight

I use dir and the result is: enter image description here

I wonder what's wrong with my diffusers or how I can fix this.

0

There are 0 best solutions below