-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Support Flux IP Adapter #10261
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
Merged
+1,157
−14
Merged
Support Flux IP Adapter #10261
Changes from 22 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
2ee946f
Flux IP-Adapter
hlky d794ab5
test cfg
hlky 7167fc4
make style
hlky dc26e47
temp remove copied from
hlky 09e1e58
fix test
hlky ce5558f
fix test
hlky 84f08d7
Merge branch 'main' into ipadapter-flux
hlky 12833b1
v2
hlky 0eb3eb8
fix
hlky 188a515
make style
hlky 08b1aeb
Merge branch 'main' into ipadapter-flux
hlky 45a2fb1
Merge branch 'main' into ipadapter-flux
hlky 19b4d54
Merge branch 'main' into ipadapter-flux
hlky 2537016
temp remove copied from
hlky 5b0a88b
Apply suggestions from code review
hlky eb67b2c
Move encoder_hid_proj to inside FluxTransformer2DModel
hlky 956e417
Merge branch 'main' into ipadapter-flux
hlky 248bbd4
merge
hlky 02edb0f
separate encode_prompt, add copied from, image_encoder offload
hlky a7bcf50
make
hlky 3516159
fix test
hlky 9059b37
fix
hlky 7db9b44
Update src/diffusers/pipelines/flux/pipeline_flux.py
hlky 786babb
test_flux_prompt_embeds change not needed
hlky 0f229c4
true_cfg -> true_cfg_scale
hlky 9276ced
fix merge conflict
hlky cab0dd8
test_flux_ip_adapter_inference
hlky 7938b42
Merge branch 'main' into ipadapter-flux
hlky 253ef7e
add fast test
hlky a3bf2a3
FluxIPAdapterMixin not test mixin
hlky a573e71
Update pipeline_flux.py
hlky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import argparse | ||
from contextlib import nullcontext | ||
|
||
import safetensors.torch | ||
from accelerate import init_empty_weights | ||
from huggingface_hub import hf_hub_download | ||
|
||
from diffusers.utils.import_utils import is_accelerate_available, is_transformers_available | ||
|
||
|
||
if is_transformers_available(): | ||
from transformers import CLIPVisionModelWithProjection | ||
|
||
vision = True | ||
else: | ||
vision = False | ||
|
||
""" | ||
python scripts/convert_flux_xlabs_ipadapter_to_diffusers.py \ | ||
--original_state_dict_repo_id "XLabs-AI/flux-ip-adapter" \ | ||
--filename "flux-ip-adapter.safetensors" | ||
--output_path "flux-ip-adapter-hf/" | ||
""" | ||
|
||
|
||
CTX = init_empty_weights if is_accelerate_available else nullcontext | ||
|
||
parser = argparse.ArgumentParser() | ||
parser.add_argument("--original_state_dict_repo_id", default=None, type=str) | ||
parser.add_argument("--filename", default="flux.safetensors", type=str) | ||
parser.add_argument("--checkpoint_path", default=None, type=str) | ||
parser.add_argument("--output_path", type=str) | ||
parser.add_argument("--vision_pretrained_or_path", default="openai/clip-vit-large-patch14", type=str) | ||
|
||
args = parser.parse_args() | ||
|
||
|
||
def load_original_checkpoint(args): | ||
if args.original_state_dict_repo_id is not None: | ||
ckpt_path = hf_hub_download(repo_id=args.original_state_dict_repo_id, filename=args.filename) | ||
elif args.checkpoint_path is not None: | ||
ckpt_path = args.checkpoint_path | ||
else: | ||
raise ValueError(" please provide either `original_state_dict_repo_id` or a local `checkpoint_path`") | ||
|
||
original_state_dict = safetensors.torch.load_file(ckpt_path) | ||
return original_state_dict | ||
|
||
|
||
def convert_flux_ipadapter_checkpoint_to_diffusers(original_state_dict, num_layers): | ||
converted_state_dict = {} | ||
|
||
# image_proj | ||
## norm | ||
converted_state_dict["image_proj.norm.weight"] = original_state_dict.pop("ip_adapter_proj_model.norm.weight") | ||
converted_state_dict["image_proj.norm.bias"] = original_state_dict.pop("ip_adapter_proj_model.norm.bias") | ||
## proj | ||
converted_state_dict["image_proj.proj.weight"] = original_state_dict.pop("ip_adapter_proj_model.norm.weight") | ||
converted_state_dict["image_proj.proj.bias"] = original_state_dict.pop("ip_adapter_proj_model.norm.bias") | ||
|
||
# double transformer blocks | ||
for i in range(num_layers): | ||
block_prefix = f"ip_adapter.{i}." | ||
# to_k_ip | ||
converted_state_dict[f"{block_prefix}to_k_ip.bias"] = original_state_dict.pop( | ||
f"double_blocks.{i}.processor.ip_adapter_double_stream_k_proj.bias" | ||
) | ||
converted_state_dict[f"{block_prefix}to_k_ip.weight"] = original_state_dict.pop( | ||
f"double_blocks.{i}.processor.ip_adapter_double_stream_k_proj.weight" | ||
) | ||
# to_v_ip | ||
converted_state_dict[f"{block_prefix}to_v_ip.bias"] = original_state_dict.pop( | ||
f"double_blocks.{i}.processor.ip_adapter_double_stream_v_proj.bias" | ||
) | ||
converted_state_dict[f"{block_prefix}to_k_ip.weight"] = original_state_dict.pop( | ||
f"double_blocks.{i}.processor.ip_adapter_double_stream_v_proj.weight" | ||
) | ||
|
||
return converted_state_dict | ||
|
||
|
||
def main(args): | ||
original_ckpt = load_original_checkpoint(args) | ||
|
||
num_layers = 19 | ||
converted_ip_adapter_state_dict = convert_flux_ipadapter_checkpoint_to_diffusers(original_ckpt, num_layers) | ||
|
||
print("Saving Flux IP-Adapter in Diffusers format.") | ||
safetensors.torch.save_file(converted_ip_adapter_state_dict, f"{args.output_path}/model.safetensors") | ||
|
||
if vision: | ||
model = CLIPVisionModelWithProjection.from_pretrained(args.vision_pretrained_or_path) | ||
model.save_pretrained(f"{args.output_path}/image_encoder") | ||
|
||
|
||
if __name__ == "__main__": | ||
main(args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.