mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-16 08:33:29 +00:00
Fix regression.
This commit is contained in:
parent
5eddfdd80c
commit
2c4e92a98b
@ -48,7 +48,12 @@ def detect_unet_config(state_dict, key_prefix, dtype):
|
|||||||
unet_config["dtype"] = dtype
|
unet_config["dtype"] = dtype
|
||||||
model_channels = state_dict['{}input_blocks.0.0.weight'.format(key_prefix)].shape[0]
|
model_channels = state_dict['{}input_blocks.0.0.weight'.format(key_prefix)].shape[0]
|
||||||
in_channels = state_dict['{}input_blocks.0.0.weight'.format(key_prefix)].shape[1]
|
in_channels = state_dict['{}input_blocks.0.0.weight'.format(key_prefix)].shape[1]
|
||||||
out_channels = state_dict['{}out.2.weight'.format(key_prefix)].shape[0]
|
|
||||||
|
out_key = '{}out.2.weight'.format(key_prefix)
|
||||||
|
if out_key in state_dict:
|
||||||
|
out_channels = state_dict[out_key].shape[0]
|
||||||
|
else:
|
||||||
|
out_channels = 4
|
||||||
|
|
||||||
num_res_blocks = []
|
num_res_blocks = []
|
||||||
channel_mult = []
|
channel_mult = []
|
||||||
|
Loading…
Reference in New Issue
Block a user