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 2b9bfa3 commit 130e592Copy full SHA for 130e592
src/diffusers/loaders/lora_conversion_utils.py
@@ -673,10 +673,6 @@ def _convert_bfl_flux_control_lora_to_diffusers(original_state_dict):
673
inner_dim = 3072
674
mlp_ratio = 4.0
675
676
- for k in original_state_dict:
677
- if "bias" in k and "img_in" in k:
678
- print(f"{k=}")
679
-
680
def swap_scale_shift(weight):
681
shift, scale = weight.chunk(2, dim=0)
682
new_weight = torch.cat([scale, shift], dim=0)
0 commit comments