Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7.3k
[LoRA] Add LoRA support to AuraFlow#9017
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
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
e2fe0e261e7f46a21bd03e8e957139efb8029e8e7f3f9e464c52dc64fa323981d4f5b95f56714db455957d20bd1File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1474,7 +1474,6 @@ def unfuse_lora(self, components: List[str] = ["transformer", "text_encoder", "t | ||||
| """ | ||||
| super().unfuse_lora(components=components) | ||||
| class FluxLoraLoaderMixin(LoraBaseMixin): | ||||
| r""" | ||||
| Load LoRA layers into [`FluxTransformer2DModel`], | ||||
| @@ -1949,7 +1948,337 @@ def unfuse_lora(self, components: List[str] = ["transformer", "text_encoder"], * | ||||
| """ | ||||
| super().unfuse_lora(components=components) | ||||
| class AuraFlowLoraLoaderMixin(LoraBaseMixin): | ||||
| r""" | ||||
| Load LoRA layers into [`AuraFlowTransformer2DModel`] | ||||
| Specific to [`AuraFlowPipeline`]. | ||||
| """ | ||||
| _lora_loadable_modules = ["transformer"] | ||||
| transformer_name = TRANSFORMER_NAME | ||||
| @classmethod | ||||
| @validate_hf_hub_args | ||||
| # Copied from diffusers.loaders.lora_pipeline.SD3LoraLoaderMixin.lora_state_dict | ||||
| def lora_state_dict( | ||||
sayakpaul marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There should be a "Copied from statement ..." here like: diffusers/src/diffusers/loaders/lora_pipeline.py Line 1492 in 98930ee
| ||||
| cls, | ||||
| pretrained_model_name_or_path_or_dict: Union[str, Dict[str, torch.Tensor]], | ||||
| **kwargs, | ||||
| ): | ||||
| r""" | ||||
| Return state dict for lora weights and the network alphas. | ||||
| <Tip warning={true}> | ||||
| We support loading A1111 formatted LoRA checkpoints in a limited capacity. | ||||
| This function is experimental and might change in the future. | ||||
| </Tip> | ||||
| Parameters: | ||||
| pretrained_model_name_or_path_or_dict (`str` or `os.PathLike` or `dict`): | ||||
| Can be either: | ||||
| - A string, the *model id* (for example `google/ddpm-celebahq-256`) of a pretrained model hosted on | ||||
| the Hub. | ||||
| - A path to a *directory* (for example `./my_model_directory`) containing the model weights saved | ||||
| with [`ModelMixin.save_pretrained`]. | ||||
| - A [torch state | ||||
| dict](https://pytorch.org/tutorials/beginner/saving_loading_models.html#what-is-a-state-dict). | ||||
| cache_dir (`Union[str, os.PathLike]`, *optional*): | ||||
| Path to a directory where a downloaded pretrained model configuration is cached if the standard cache | ||||
| is not used. | ||||
| force_download (`bool`, *optional*, defaults to `False`): | ||||
| Whether or not to force the (re-)download of the model weights and configuration files, overriding the | ||||
| cached versions if they exist. | ||||
| proxies (`Dict[str, str]`, *optional*): | ||||
| A dictionary of proxy servers to use by protocol or endpoint, for example, `{'http': 'foo.bar:3128', | ||||
| 'http://hostname': 'foo.bar:4012'}`. The proxies are used on each request. | ||||
| local_files_only (`bool`, *optional*, defaults to `False`): | ||||
| Whether to only load local model weights and configuration files or not. If set to `True`, the model | ||||
| won't be downloaded from the Hub. | ||||
| token (`str` or *bool*, *optional*): | ||||
| The token to use as HTTP bearer authorization for remote files. If `True`, the token generated from | ||||
| `diffusers-cli login` (stored in `~/.huggingface`) is used. | ||||
| revision (`str`, *optional*, defaults to `"main"`): | ||||
| The specific model version to use. It can be a branch name, a tag name, a commit id, or any identifier | ||||
| allowed by Git. | ||||
| subfolder (`str`, *optional*, defaults to `""`): | ||||
| The subfolder location of a model file within a larger model repository on the Hub or locally. | ||||
| """ | ||||
| # Load the main state dict first which has the LoRA layers for transformer | ||||
| cache_dir = kwargs.pop("cache_dir", None) | ||||
| force_download = kwargs.pop("force_download", False) | ||||
| proxies = kwargs.pop("proxies", None) | ||||
| local_files_only = kwargs.pop("local_files_only", None) | ||||
| token = kwargs.pop("token", None) | ||||
| revision = kwargs.pop("revision", None) | ||||
| subfolder = kwargs.pop("subfolder", None) | ||||
| weight_name = kwargs.pop("weight_name", None) | ||||
| use_safetensors = kwargs.pop("use_safetensors", None) | ||||
| allow_pickle = False | ||||
| if use_safetensors is None: | ||||
| use_safetensors = True | ||||
| allow_pickle = True | ||||
| user_agent = { | ||||
| "file_type": "attn_procs_weights", | ||||
| "framework": "pytorch", | ||||
| } | ||||
| state_dict = cls._fetch_state_dict( | ||||
| pretrained_model_name_or_path_or_dict=pretrained_model_name_or_path_or_dict, | ||||
| weight_name=weight_name, | ||||
| use_safetensors=use_safetensors, | ||||
| local_files_only=local_files_only, | ||||
| cache_dir=cache_dir, | ||||
| force_download=force_download, | ||||
| proxies=proxies, | ||||
| token=token, | ||||
| revision=revision, | ||||
| subfolder=subfolder, | ||||
| user_agent=user_agent, | ||||
| allow_pickle=allow_pickle, | ||||
| ) | ||||
| return state_dict | ||||
| def load_lora_weights( | ||||
sayakpaul marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||||
| self, pretrained_model_name_or_path_or_dict: Union[str, Dict[str, torch.Tensor]], adapter_name=None, **kwargs | ||||
| ): | ||||
| """ | ||||
| Load LoRA weights specified in `pretrained_model_name_or_path_or_dict` into `self.transformer` | ||||
| All kwargs are forwarded to `self.lora_state_dict`. | ||||
| See [`~loaders.StableDiffusionLoraLoaderMixin.lora_state_dict`] for more details on how the state dict is | ||||
| loaded. | ||||
| See [`~loaders.StableDiffusionLoraLoaderMixin.load_lora_into_transformer`] for more details on how the state | ||||
| dict is loaded into `self.transformer`. | ||||
| Parameters: | ||||
| pretrained_model_name_or_path_or_dict (`str` or `os.PathLike` or `dict`): | ||||
| See [`~loaders.StableDiffusionLoraLoaderMixin.lora_state_dict`]. | ||||
| kwargs (`dict`, *optional*): | ||||
| See [`~loaders.StableDiffusionLoraLoaderMixin.lora_state_dict`]. | ||||
| adapter_name (`str`, *optional*): | ||||
| Adapter name to be used for referencing the loaded adapter model. If not specified, it will use | ||||
| `default_{i}` where i is the total number of adapters being loaded. | ||||
| """ | ||||
| if not USE_PEFT_BACKEND: | ||||
| raise ValueError("PEFT backend is required for this method.") | ||||
| # if a dict is passed, copy it instead of modifying it inplace | ||||
| if isinstance(pretrained_model_name_or_path_or_dict, dict): | ||||
| pretrained_model_name_or_path_or_dict = pretrained_model_name_or_path_or_dict.copy() | ||||
| # First, ensure that the checkpoint is a compatible one and can be successfully loaded. | ||||
| state_dict = self.lora_state_dict(pretrained_model_name_or_path_or_dict, **kwargs) | ||||
| is_correct_format = all("lora" in key or "dora_scale" in key for key in state_dict.keys()) | ||||
| if not is_correct_format: | ||||
| raise ValueError("Invalid LoRA checkpoint.") | ||||
| self.load_lora_into_transformer( | ||||
| state_dict, | ||||
| transformer=getattr(self, self.transformer_name) if not hasattr(self, "transformer") else self.transformer, | ||||
| adapter_name=adapter_name, | ||||
| _pipeline=self, | ||||
| ) | ||||
| @classmethod | ||||
| # Copied from diffusers.loaders.lora_pipeline.SD3LoraLoaderMixin.load_lora_into_transformer | ||||
| def load_lora_into_transformer(cls, state_dict, transformer, adapter_name=None, _pipeline=None): | ||||
sayakpaul marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||||
| """ | ||||
| This will load the LoRA layers specified in `state_dict` into `transformer`. | ||||
| Parameters: | ||||
| state_dict (`dict`): | ||||
| A standard state dict containing the lora layer parameters. The keys can either be indexed directly | ||||
| into the unet or prefixed with an additional `unet` which can be used to distinguish between text | ||||
| encoder lora layers. | ||||
| transformer (`SD3Transformer2DModel`): | ||||
| The Transformer model to load the LoRA layers into. | ||||
| adapter_name (`str`, *optional*): | ||||
| Adapter name to be used for referencing the loaded adapter model. If not specified, it will use | ||||
| `default_{i}` where i is the total number of adapters being loaded. | ||||
| """ | ||||
| from peft import LoraConfig, inject_adapter_in_model, set_peft_model_state_dict | ||||
| keys = list(state_dict.keys()) | ||||
| transformer_keys = [k for k in keys if k.startswith(cls.transformer_name)] | ||||
| state_dict = { | ||||
| k.replace(f"{cls.transformer_name}.", ""): v for k, v in state_dict.items() if k in transformer_keys | ||||
| } | ||||
| if len(state_dict.keys()) > 0: | ||||
| # check with first key if is not in peft format | ||||
| first_key = next(iter(state_dict.keys())) | ||||
| if "lora_A" not in first_key: | ||||
| state_dict = convert_unet_state_dict_to_peft(state_dict) | ||||
| if adapter_name in getattr(transformer, "peft_config", {}): | ||||
| raise ValueError( | ||||
| f"Adapter name {adapter_name} already in use in the transformer - please select a new adapter name." | ||||
| ) | ||||
| rank = {} | ||||
| for key, val in state_dict.items(): | ||||
| if "lora_B" in key: | ||||
| rank[key] = val.shape[1] | ||||
| lora_config_kwargs = get_peft_kwargs(rank, network_alpha_dict=None, peft_state_dict=state_dict) | ||||
| if "use_dora" in lora_config_kwargs: | ||||
| if lora_config_kwargs["use_dora"] and is_peft_version("<", "0.9.0"): | ||||
| raise ValueError( | ||||
| "You need `peft` 0.9.0 at least to use DoRA-enabled LoRAs. Please upgrade your installation of `peft`." | ||||
| ) | ||||
| else: | ||||
| lora_config_kwargs.pop("use_dora") | ||||
| lora_config = LoraConfig(**lora_config_kwargs) | ||||
| # adapter_name | ||||
| if adapter_name is None: | ||||
| adapter_name = get_adapter_name(transformer) | ||||
| # In case the pipeline has been already offloaded to CPU - temporarily remove the hooks | ||||
| # otherwise loading LoRA weights will lead to an error | ||||
| is_model_cpu_offload, is_sequential_cpu_offload = cls._optionally_disable_offloading(_pipeline) | ||||
| inject_adapter_in_model(lora_config, transformer, adapter_name=adapter_name) | ||||
| incompatible_keys = set_peft_model_state_dict(transformer, state_dict, adapter_name) | ||||
| if incompatible_keys is not None: | ||||
| # check only for unexpected keys | ||||
| unexpected_keys = getattr(incompatible_keys, "unexpected_keys", None) | ||||
| if unexpected_keys: | ||||
| logger.warning( | ||||
| f"Loading adapter weights from state_dict led to unexpected keys not found in the model: " | ||||
| f" {unexpected_keys}. " | ||||
| ) | ||||
| # Offload back. | ||||
| if is_model_cpu_offload: | ||||
| _pipeline.enable_model_cpu_offload() | ||||
| elif is_sequential_cpu_offload: | ||||
| _pipeline.enable_sequential_cpu_offload() | ||||
| # Unsafe code /> | ||||
| @classmethod | ||||
| def save_lora_weights( | ||||
| cls, | ||||
| save_directory: Union[str, os.PathLike], | ||||
| transformer_lora_layers: Dict[str, torch.nn.Module] = None, | ||||
| is_main_process: bool = True, | ||||
| weight_name: str = None, | ||||
| save_function: Callable = None, | ||||
| safe_serialization: bool = True, | ||||
| ): | ||||
| r""" | ||||
| Save the LoRA parameters corresponding to the UNet and text encoder. | ||||
| Arguments: | ||||
| save_directory (`str` or `os.PathLike`): | ||||
| Directory to save LoRA parameters to. Will be created if it doesn't exist. | ||||
| transformer_lora_layers (`Dict[str, torch.nn.Module]` or `Dict[str, torch.Tensor]`): | ||||
| State dict of the LoRA layers corresponding to the `transformer`. | ||||
| is_main_process (`bool`, *optional*, defaults to `True`): | ||||
| Whether the process calling this is the main process or not. Useful during distributed training and you | ||||
| need to call this function on all processes. In this case, set `is_main_process=True` only on the main | ||||
| process to avoid race conditions. | ||||
| save_function (`Callable`): | ||||
| The function to use to save the state dictionary. Useful during distributed training when you need to | ||||
| replace `torch.save` with another method. Can be configured with the environment variable | ||||
| `DIFFUSERS_SAVE_MODE`. | ||||
| safe_serialization (`bool`, *optional*, defaults to `True`): | ||||
| Whether to save the model using `safetensors` or the traditional PyTorch way with `pickle`. | ||||
| """ | ||||
| state_dict = {} | ||||
| if not (transformer_lora_layers): | ||||
| raise ValueError( | ||||
| "You must pass `transformer_lora_layers`." | ||||
| ) | ||||
| state_dict.update(cls.pack_weights(transformer_lora_layers, cls.transformer_name)) | ||||
| # Save the model | ||||
| cls.write_lora_layers( | ||||
| state_dict=state_dict, | ||||
| save_directory=save_directory, | ||||
| is_main_process=is_main_process, | ||||
| weight_name=weight_name, | ||||
| save_function=save_function, | ||||
| safe_serialization=safe_serialization, | ||||
| ) | ||||
| def fuse_lora( | ||||
| self, | ||||
| components: List[str] = ["transformer"], | ||||
| lora_scale: float = 1.0, | ||||
| safe_fusing: bool = False, | ||||
| adapter_names: Optional[List[str]] = None, | ||||
| **kwargs, | ||||
| ): | ||||
| r""" | ||||
| Fuses the LoRA parameters into the original parameters of the corresponding blocks. | ||||
| <Tip warning={true}> | ||||
| This is an experimental API. | ||||
| </Tip> | ||||
| Args: | ||||
| components: (`List[str]`): List of LoRA-injectable components to fuse the LoRAs into. | ||||
| lora_scale (`float`, defaults to 1.0): | ||||
| Controls how much to influence the outputs with the LoRA parameters. | ||||
| safe_fusing (`bool`, defaults to `False`): | ||||
| Whether to check fused weights for NaN values before fusing and if values are NaN not fusing them. | ||||
| adapter_names (`List[str]`, *optional*): | ||||
| Adapter names to be used for fusing. If nothing is passed, all active adapters will be fused. | ||||
| Example: | ||||
| ```py | ||||
| from diffusers import DiffusionPipeline | ||||
| import torch | ||||
| pipeline = DiffusionPipeline.from_pretrained( | ||||
| "stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16 | ||||
| ).to("cuda") | ||||
| pipeline.load_lora_weights("nerijs/pixel-art-xl", weight_name="pixel-art-xl.safetensors", adapter_name="pixel") | ||||
| pipeline.fuse_lora(lora_scale=0.7) | ||||
| ``` | ||||
| """ | ||||
| super().fuse_lora( | ||||
| components=components, lora_scale=lora_scale, safe_fusing=safe_fusing, adapter_names=adapter_names | ||||
| ) | ||||
| def unfuse_lora(self, components: List[str] = ["transformer"], **kwargs): | ||||
| r""" | ||||
| Reverses the effect of | ||||
| [`pipe.fuse_lora()`](https://huggingface.co/docs/diffusers/main/en/api/loaders#diffusers.loaders.LoraBaseMixin.fuse_lora). | ||||
| <Tip warning={true}> | ||||
| This is an experimental API. | ||||
| </Tip> | ||||
| Args: | ||||
| components (`List[str]`): List of LoRA-injectable components to unfuse LoRA from. | ||||
| """ | ||||
| super().unfuse_lora(components=components) | ||||
| # The reason why we subclass from `StableDiffusionLoraLoaderMixin` here is because Amused initially | ||||
| # relied on `StableDiffusionLoraLoaderMixin` for its LoRA support. | ||||
| class AmusedLoraLoaderMixin(StableDiffusionLoraLoaderMixin): | ||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should suffice for the docs.