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
fromdiffusersimportStableDiffusionXLInpaintPipeline, StableDiffusionXLPipeline# load normal sdxl modelpipe=StableDiffusionXLPipeline.from_single_file("sd_xl_base_1.0.safetensors", local_files_only=False, load_safety_checker=False)
print("load normal sdxl model, unet in_channels: ", pipe.unet.config.in_channels)
# load normal sdxl model, by setting num_in_channels=9, it should raise errorpipe=StableDiffusionXLPipeline.from_single_file("sd_xl_base_1.0.safetensors", local_files_only=False, load_safety_checker=False, num_in_channels=9)
print("load normal sdxl model with num_in_channels=9, should raise error, but unet in_channels is: ", pipe.unet.config.in_channels)
print("""This should load ok, but will raise error: ValueError: Trying to set a tensor of shape torch.Size([320, 9, 3, 3]) in "weight" (which has shape torch.Size([320, 4, 3, 3])), this look incorrect.""")
pipe=StableDiffusionXLInpaintPipeline.from_single_file("sd_xl_base_1.0_inpainting_0.1.safetensors", local_files_only=False, load_safety_checker=False, num_in_channels=9)
The original configuration file used by SDXL is using network_config instead of unet_config, which suggests that there may be an issue with this line of code:
Describe the bug
num_in_channels has no effect when call
StableDiffusionXLInpaintPipeline.from_single_file
andStableDiffusionXLPipeline.from_single_file
Reproduction
Running following code can produce the issue:
The original configuration file used by SDXL is using
network_config
instead ofunet_config
, which suggests that there may be an issue with this line of code:diffusers/src/diffusers/pipelines/stable_diffusion/convert_from_ckpt.py
Line 1357 in dce0668
Logs
No response
System Info
diffusers
version: 0.25.0Who can help?
@yiyixuxu @sayakpaul
The text was updated successfully, but these errors were encountered: