Browse Source

Fix regression.

pull/1977/merge
comfyanonymous 11 months ago
parent
commit
2c4e92a98b
  1. 7
      comfy/model_detection.py

7
comfy/model_detection.py

@ -48,7 +48,12 @@ def detect_unet_config(state_dict, key_prefix, dtype):
unet_config["dtype"] = dtype
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]
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 = []
channel_mult = []

Loading…
Cancel
Save