We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8a371e commit 7530559Copy full SHA for 7530559
src/diffusers/loaders/lora_pipeline.py
@@ -4877,8 +4877,7 @@ def _maybe_expand_t2v_lora_for_vace(
4877
4878
for i, vace_block_module_in_model in enumerate(transformer.vace_blocks):
4879
# Specifically target proj_out as per the error message
4880
- if hasattr(vace_block_module_in_model, 'proj_out') and \
4881
- isinstance(vace_block_module_in_model.proj_out, nn.Linear):
+ if hasattr(vace_block_module_in_model, 'proj_out'):
4882
4883
proj_out_linear_layer_in_model = vace_block_module_in_model.proj_out
4884
0 commit comments