Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge changes #183

Merged
merged 20 commits into from
Oct 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
99f6082
[sd3] make sure height and size are divisible by `16` (#9573)
yiyixuxu Oct 3, 2024
3159e60
fix xlabs FLUX lora conversion typo (#9581)
Clement-Lelievre Oct 7, 2024
31010ec
[Chore] add a note on the versions in Flux LoRA integration tests (#9…
sayakpaul Oct 7, 2024
2cb383f
fix vae dtype when accelerate config using --mixed_precision="fp16" (…
xduzhangjiayu Oct 7, 2024
a80f689
refac: docstrings in import_utils.py (#9583)
yijun-lee Oct 7, 2024
1287822
Fix for use_safetensors parameters, allow use of parameter on loading…
elismasilva Oct 7, 2024
63a5c87
Update distributed_inference.md to include `transformer.device_map` (…
sayakpaul Oct 8, 2024
66eef9a
fix: CogVideox train dataset _preprocess_data crop video (#9574)
glide-the Oct 8, 2024
02eeb8e
[LoRA] Handle DoRA better (#9547)
sayakpaul Oct 8, 2024
86bd991
Fixed noise_pred_text referenced before assignment. (#9537)
LagPixelLOL Oct 8, 2024
acd6d2c
Fix the bug that `joint_attention_kwargs` is not passed to the FLUX's…
HorizonWind2004 Oct 8, 2024
ec9e526
refac/pipeline_output (#9582)
yijun-lee Oct 9, 2024
31058cd
[LoRA] allow loras to be loaded with low_cpu_mem_usage. (#9510)
sayakpaul Oct 9, 2024
af28ae2
add PAG support for SD Img2Img (#9463)
SahilCarterr Oct 9, 2024
07bd2fa
make controlnet support interrupt (#9620)
pureexe Oct 9, 2024
e16fd93
[LoRA] fix dora test to catch the warning properly. (#9627)
sayakpaul Oct 10, 2024
38a3e4d
flux controlnet control_guidance_start and control_guidance_end imple…
ighoshsubho Oct 10, 2024
164ec9f
fix IsADirectoryError when running the training code for sd3_dreamboo…
alaister123 Oct 11, 2024
3033f08
Add Differential Diffusion to Kolors (#9423)
saqlain2204 Oct 11, 2024
0f8fb75
FluxMultiControlNetModel (#9647)
hlky Oct 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
FluxMultiControlNetModel (huggingface#9647)
hlky authored Oct 11, 2024
commit 0f8fb75c7b9c86d4381f51b66f33d0a3f56301e6
2 changes: 2 additions & 0 deletions src/diffusers/pipelines/flux/pipeline_flux_controlnet.py
Original file line number Diff line number Diff line change
@@ -202,6 +202,8 @@ def __init__(
],
):
super().__init__()
if isinstance(controlnet, (list, tuple)):
controlnet = FluxMultiControlNetModel(controlnet)

self.register_modules(
vae=vae,
Original file line number Diff line number Diff line change
@@ -214,6 +214,8 @@ def __init__(
],
):
super().__init__()
if isinstance(controlnet, (list, tuple)):
controlnet = FluxMultiControlNetModel(controlnet)

self.register_modules(
vae=vae,
Original file line number Diff line number Diff line change
@@ -216,6 +216,8 @@ def __init__(
],
):
super().__init__()
if isinstance(controlnet, (list, tuple)):
controlnet = FluxMultiControlNetModel(controlnet)

self.register_modules(
scheduler=scheduler,