| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| import inspect |
| import os |
| import tempfile |
| import unittest |
| from itertools import product |
|
|
| import numpy as np |
| import torch |
|
|
| from diffusers import ( |
| AutoencoderKL, |
| DDIMScheduler, |
| FlowMatchEulerDiscreteScheduler, |
| LCMScheduler, |
| UNet2DConditionModel, |
| ) |
| from diffusers.utils.import_utils import is_peft_available |
| from diffusers.utils.testing_utils import ( |
| floats_tensor, |
| require_peft_backend, |
| require_peft_version_greater, |
| skip_mps, |
| torch_device, |
| ) |
|
|
|
|
| if is_peft_available(): |
| from peft import LoraConfig |
| from peft.tuners.tuners_utils import BaseTunerLayer |
| from peft.utils import get_peft_model_state_dict |
|
|
|
|
| def state_dicts_almost_equal(sd1, sd2): |
| sd1 = dict(sorted(sd1.items())) |
| sd2 = dict(sorted(sd2.items())) |
|
|
| models_are_equal = True |
| for ten1, ten2 in zip(sd1.values(), sd2.values()): |
| if (ten1 - ten2).abs().max() > 1e-3: |
| models_are_equal = False |
|
|
| return models_are_equal |
|
|
|
|
| def check_if_lora_correctly_set(model) -> bool: |
| """ |
| Checks if the LoRA layers are correctly set with peft |
| """ |
| for module in model.modules(): |
| if isinstance(module, BaseTunerLayer): |
| return True |
| return False |
|
|
|
|
| @require_peft_backend |
| class PeftLoraLoaderMixinTests: |
| pipeline_class = None |
| scheduler_cls = None |
| scheduler_kwargs = None |
| uses_flow_matching = False |
|
|
| has_two_text_encoders = False |
| has_three_text_encoders = False |
| text_encoder_cls, text_encoder_id = None, None |
| text_encoder_2_cls, text_encoder_2_id = None, None |
| text_encoder_3_cls, text_encoder_3_id = None, None |
| tokenizer_cls, tokenizer_id = None, None |
| tokenizer_2_cls, tokenizer_2_id = None, None |
| tokenizer_3_cls, tokenizer_3_id = None, None |
|
|
| unet_kwargs = None |
| transformer_cls = None |
| transformer_kwargs = None |
| vae_kwargs = None |
|
|
| def get_dummy_components(self, scheduler_cls=None, use_dora=False): |
| if self.unet_kwargs and self.transformer_kwargs: |
| raise ValueError("Both `unet_kwargs` and `transformer_kwargs` cannot be specified.") |
| if self.has_two_text_encoders and self.has_three_text_encoders: |
| raise ValueError("Both `has_two_text_encoders` and `has_three_text_encoders` cannot be True.") |
|
|
| scheduler_cls = self.scheduler_cls if scheduler_cls is None else scheduler_cls |
| rank = 4 |
|
|
| torch.manual_seed(0) |
| if self.unet_kwargs is not None: |
| unet = UNet2DConditionModel(**self.unet_kwargs) |
| else: |
| transformer = self.transformer_cls(**self.transformer_kwargs) |
|
|
| scheduler = scheduler_cls(**self.scheduler_kwargs) |
|
|
| torch.manual_seed(0) |
| vae = AutoencoderKL(**self.vae_kwargs) |
|
|
| text_encoder = self.text_encoder_cls.from_pretrained(self.text_encoder_id) |
| tokenizer = self.tokenizer_cls.from_pretrained(self.tokenizer_id) |
|
|
| if self.text_encoder_2_cls is not None: |
| text_encoder_2 = self.text_encoder_2_cls.from_pretrained(self.text_encoder_2_id) |
| tokenizer_2 = self.tokenizer_2_cls.from_pretrained(self.tokenizer_2_id) |
|
|
| if self.text_encoder_3_cls is not None: |
| text_encoder_3 = self.text_encoder_3_cls.from_pretrained(self.text_encoder_3_id) |
| tokenizer_3 = self.tokenizer_3_cls.from_pretrained(self.tokenizer_3_id) |
|
|
| text_lora_config = LoraConfig( |
| r=rank, |
| lora_alpha=rank, |
| target_modules=["q_proj", "k_proj", "v_proj", "out_proj"], |
| init_lora_weights=False, |
| use_dora=use_dora, |
| ) |
|
|
| denoiser_lora_config = LoraConfig( |
| r=rank, |
| lora_alpha=rank, |
| target_modules=["to_q", "to_k", "to_v", "to_out.0"], |
| init_lora_weights=False, |
| use_dora=use_dora, |
| ) |
|
|
| pipeline_components = { |
| "scheduler": scheduler, |
| "vae": vae, |
| "text_encoder": text_encoder, |
| "tokenizer": tokenizer, |
| } |
| |
| if self.unet_kwargs is not None: |
| pipeline_components.update({"unet": unet}) |
| elif self.transformer_kwargs is not None: |
| pipeline_components.update({"transformer": transformer}) |
|
|
| |
| if self.text_encoder_2_cls is not None: |
| pipeline_components.update({"tokenizer_2": tokenizer_2, "text_encoder_2": text_encoder_2}) |
| if self.text_encoder_3_cls is not None: |
| pipeline_components.update({"tokenizer_3": tokenizer_3, "text_encoder_3": text_encoder_3}) |
|
|
| |
| init_params = inspect.signature(self.pipeline_class.__init__).parameters |
| if "safety_checker" in init_params: |
| pipeline_components.update({"safety_checker": None}) |
| if "feature_extractor" in init_params: |
| pipeline_components.update({"feature_extractor": None}) |
| if "image_encoder" in init_params: |
| pipeline_components.update({"image_encoder": None}) |
|
|
| return pipeline_components, text_lora_config, denoiser_lora_config |
|
|
| @property |
| def output_shape(self): |
| raise NotImplementedError |
|
|
| def get_dummy_inputs(self, with_generator=True): |
| batch_size = 1 |
| sequence_length = 10 |
| num_channels = 4 |
| sizes = (32, 32) |
|
|
| generator = torch.manual_seed(0) |
| noise = floats_tensor((batch_size, num_channels) + sizes) |
| input_ids = torch.randint(1, sequence_length, size=(batch_size, sequence_length), generator=generator) |
|
|
| pipeline_inputs = { |
| "prompt": "A painting of a squirrel eating a burger", |
| "num_inference_steps": 5, |
| "guidance_scale": 6.0, |
| "output_type": "np", |
| } |
| if with_generator: |
| pipeline_inputs.update({"generator": generator}) |
|
|
| return noise, input_ids, pipeline_inputs |
|
|
| |
| def get_dummy_tokens(self): |
| max_seq_length = 77 |
|
|
| inputs = torch.randint(2, 56, size=(1, max_seq_length), generator=torch.manual_seed(0)) |
|
|
| prepared_inputs = {} |
| prepared_inputs["input_ids"] = inputs |
| return prepared_inputs |
|
|
| def test_simple_inference(self): |
| """ |
| Tests a simple inference and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
|
|
| _, _, inputs = self.get_dummy_inputs() |
| output_no_lora = pipe(**inputs).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| def test_simple_inference_with_text_lora(self): |
| """ |
| Tests a simple inference with lora attached on the text encoder |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| output_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_no_lora, atol=1e-3, rtol=1e-3), "Lora should change the output" |
| ) |
|
|
| def test_simple_inference_with_text_lora_and_scale(self): |
| """ |
| Tests a simple inference with lora attached on the text encoder + scale argument |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| output_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_no_lora, atol=1e-3, rtol=1e-3), "Lora should change the output" |
| ) |
|
|
| if self.unet_kwargs is not None: |
| output_lora_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), cross_attention_kwargs={"scale": 0.5} |
| ).images |
| else: |
| output_lora_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), joint_attention_kwargs={"scale": 0.5} |
| ).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_lora_scale, atol=1e-3, rtol=1e-3), |
| "Lora + scale should change the output", |
| ) |
|
|
| if self.unet_kwargs is not None: |
| output_lora_0_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), cross_attention_kwargs={"scale": 0.0} |
| ).images |
| else: |
| output_lora_0_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), joint_attention_kwargs={"scale": 0.0} |
| ).images |
| self.assertTrue( |
| np.allclose(output_no_lora, output_lora_0_scale, atol=1e-3, rtol=1e-3), |
| "Lora + 0 scale should lead to same result as no LoRA", |
| ) |
|
|
| def test_simple_inference_with_text_lora_fused(self): |
| """ |
| Tests a simple inference with lora attached into text encoder + fuses the lora weights into base model |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.fuse_lora() |
| |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| ouput_fused = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertFalse( |
| np.allclose(ouput_fused, output_no_lora, atol=1e-3, rtol=1e-3), "Fused lora should change the output" |
| ) |
|
|
| def test_simple_inference_with_text_lora_unloaded(self): |
| """ |
| Tests a simple inference with lora attached to text encoder, then unloads the lora weights |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.unload_lora_weights() |
| |
| self.assertFalse( |
| check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly unloaded in text encoder" |
| ) |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertFalse( |
| check_if_lora_correctly_set(pipe.text_encoder_2), |
| "Lora not correctly unloaded in text encoder 2", |
| ) |
|
|
| ouput_unloaded = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| np.allclose(ouput_unloaded, output_no_lora, atol=1e-3, rtol=1e-3), |
| "Fused lora should change the output", |
| ) |
|
|
| def test_simple_inference_with_text_lora_save_load(self): |
| """ |
| Tests a simple usecase where users could use saving utilities for LoRA. |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| images_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| with tempfile.TemporaryDirectory() as tmpdirname: |
| text_encoder_state_dict = get_peft_model_state_dict(pipe.text_encoder) |
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| text_encoder_2_state_dict = get_peft_model_state_dict(pipe.text_encoder_2) |
|
|
| self.pipeline_class.save_lora_weights( |
| save_directory=tmpdirname, |
| text_encoder_lora_layers=text_encoder_state_dict, |
| text_encoder_2_lora_layers=text_encoder_2_state_dict, |
| safe_serialization=False, |
| ) |
| else: |
| self.pipeline_class.save_lora_weights( |
| save_directory=tmpdirname, |
| text_encoder_lora_layers=text_encoder_state_dict, |
| safe_serialization=False, |
| ) |
|
|
| if self.has_two_text_encoders: |
| if "text_encoder_2" not in self.pipeline_class._lora_loadable_modules: |
| self.pipeline_class.save_lora_weights( |
| save_directory=tmpdirname, |
| text_encoder_lora_layers=text_encoder_state_dict, |
| safe_serialization=False, |
| ) |
|
|
| self.assertTrue(os.path.isfile(os.path.join(tmpdirname, "pytorch_lora_weights.bin"))) |
| pipe.unload_lora_weights() |
|
|
| pipe.load_lora_weights(os.path.join(tmpdirname, "pytorch_lora_weights.bin")) |
|
|
| images_lora_from_pretrained = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| self.assertTrue( |
| np.allclose(images_lora, images_lora_from_pretrained, atol=1e-3, rtol=1e-3), |
| "Loading from saved checkpoints should give same results.", |
| ) |
|
|
| def test_simple_inference_with_partial_text_lora(self): |
| """ |
| Tests a simple inference with lora attached on the text encoder |
| with different ranks and some adapters removed |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, _, _ = self.get_dummy_components(scheduler_cls) |
| |
| text_lora_config = LoraConfig( |
| r=4, |
| rank_pattern={"q_proj": 1, "k_proj": 2, "v_proj": 3}, |
| lora_alpha=4, |
| target_modules=["q_proj", "k_proj", "v_proj", "out_proj"], |
| init_lora_weights=False, |
| use_dora=False, |
| ) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| |
| |
| state_dict = { |
| f"text_encoder.{module_name}": param |
| for module_name, param in get_peft_model_state_dict(pipe.text_encoder).items() |
| if "text_model.encoder.layers.4" not in module_name |
| } |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
| state_dict.update( |
| { |
| f"text_encoder_2.{module_name}": param |
| for module_name, param in get_peft_model_state_dict(pipe.text_encoder_2).items() |
| if "text_model.encoder.layers.4" not in module_name |
| } |
| ) |
|
|
| output_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_no_lora, atol=1e-3, rtol=1e-3), "Lora should change the output" |
| ) |
|
|
| |
| pipe.unload_lora_weights() |
| pipe.load_lora_weights(state_dict) |
|
|
| output_partial_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| not np.allclose(output_partial_lora, output_lora, atol=1e-3, rtol=1e-3), |
| "Removing adapters should change the output", |
| ) |
|
|
| def test_simple_inference_save_pretrained(self): |
| """ |
| Tests a simple usecase where users could use saving utilities for LoRA through save_pretrained |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| images_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| with tempfile.TemporaryDirectory() as tmpdirname: |
| pipe.save_pretrained(tmpdirname) |
|
|
| pipe_from_pretrained = self.pipeline_class.from_pretrained(tmpdirname) |
| pipe_from_pretrained.to(torch_device) |
|
|
| self.assertTrue( |
| check_if_lora_correctly_set(pipe_from_pretrained.text_encoder), |
| "Lora not correctly set in text encoder", |
| ) |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe_from_pretrained.text_encoder_2), |
| "Lora not correctly set in text encoder 2", |
| ) |
|
|
| images_lora_save_pretrained = pipe_from_pretrained(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(images_lora, images_lora_save_pretrained, atol=1e-3, rtol=1e-3), |
| "Loading from saved checkpoints should give same results.", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_lora_save_load(self): |
| """ |
| Tests a simple usecase where users could use saving utilities for LoRA for Unet + text encoder |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in Unet") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| images_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| with tempfile.TemporaryDirectory() as tmpdirname: |
| text_encoder_state_dict = get_peft_model_state_dict(pipe.text_encoder) |
|
|
| if self.unet_kwargs is not None: |
| denoiser_state_dict = get_peft_model_state_dict(pipe.unet) |
| else: |
| denoiser_state_dict = get_peft_model_state_dict(pipe.transformer) |
|
|
| saving_kwargs = { |
| "save_directory": tmpdirname, |
| "text_encoder_lora_layers": text_encoder_state_dict, |
| "safe_serialization": False, |
| } |
|
|
| if self.unet_kwargs is not None: |
| saving_kwargs.update({"unet_lora_layers": denoiser_state_dict}) |
| else: |
| saving_kwargs.update({"transformer_lora_layers": denoiser_state_dict}) |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| text_encoder_2_state_dict = get_peft_model_state_dict(pipe.text_encoder_2) |
| saving_kwargs.update({"text_encoder_2_lora_layers": text_encoder_2_state_dict}) |
|
|
| self.pipeline_class.save_lora_weights(**saving_kwargs) |
|
|
| self.assertTrue(os.path.isfile(os.path.join(tmpdirname, "pytorch_lora_weights.bin"))) |
| pipe.unload_lora_weights() |
|
|
| pipe.load_lora_weights(os.path.join(tmpdirname, "pytorch_lora_weights.bin")) |
|
|
| images_lora_from_pretrained = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| self.assertTrue( |
| np.allclose(images_lora, images_lora_from_pretrained, atol=1e-3, rtol=1e-3), |
| "Loading from saved checkpoints should give same results.", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_lora_and_scale(self): |
| """ |
| Tests a simple inference with lora attached on the text encoder + Unet + scale argument |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| output_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_no_lora, atol=1e-3, rtol=1e-3), "Lora should change the output" |
| ) |
|
|
| if self.unet_kwargs is not None: |
| output_lora_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), cross_attention_kwargs={"scale": 0.5} |
| ).images |
| else: |
| output_lora_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), joint_attention_kwargs={"scale": 0.5} |
| ).images |
| self.assertTrue( |
| not np.allclose(output_lora, output_lora_scale, atol=1e-3, rtol=1e-3), |
| "Lora + scale should change the output", |
| ) |
|
|
| if self.unet_kwargs is not None: |
| output_lora_0_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), cross_attention_kwargs={"scale": 0.0} |
| ).images |
| else: |
| output_lora_0_scale = pipe( |
| **inputs, generator=torch.manual_seed(0), joint_attention_kwargs={"scale": 0.0} |
| ).images |
| self.assertTrue( |
| np.allclose(output_no_lora, output_lora_0_scale, atol=1e-3, rtol=1e-3), |
| "Lora + 0 scale should lead to same result as no LoRA", |
| ) |
|
|
| self.assertTrue( |
| pipe.text_encoder.text_model.encoder.layers[0].self_attn.q_proj.scaling["default"] == 1.0, |
| "The scaling parameter has not been correctly restored!", |
| ) |
|
|
| def test_simple_inference_with_text_lora_denoiser_fused(self): |
| """ |
| Tests a simple inference with lora attached into text encoder + fuses the lora weights into base model |
| and makes sure it works as expected - with unet |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.fuse_lora() |
| |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| ouput_fused = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertFalse( |
| np.allclose(ouput_fused, output_no_lora, atol=1e-3, rtol=1e-3), "Fused lora should change the output" |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_lora_unloaded(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, then unloads the lora weights |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.unload_lora_weights() |
| |
| self.assertFalse( |
| check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly unloaded in text encoder" |
| ) |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertFalse( |
| check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly unloaded in denoiser" |
| ) |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertFalse( |
| check_if_lora_correctly_set(pipe.text_encoder_2), |
| "Lora not correctly unloaded in text encoder 2", |
| ) |
|
|
| ouput_unloaded = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| np.allclose(ouput_unloaded, output_no_lora, atol=1e-3, rtol=1e-3), |
| "Fused lora should change the output", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_lora_unfused(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, then unloads the lora weights |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.fuse_lora() |
|
|
| output_fused_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.unfuse_lora() |
|
|
| output_unfused_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| |
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Unfuse should still keep LoRA layers") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Unfuse should still keep LoRA layers") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Unfuse should still keep LoRA layers" |
| ) |
|
|
| |
| self.assertTrue( |
| np.allclose(output_fused_lora, output_unfused_lora, atol=1e-3, rtol=1e-3), |
| "Fused lora should change the output", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_multi_adapter(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, attaches |
| multiple adapters and set them |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-2") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.set_adapters("adapter-1") |
|
|
| output_adapter_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters("adapter-2") |
| output_adapter_2 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
|
|
| output_adapter_mixed = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| |
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_2, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and 2 should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and mixed adapters should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_2, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 2 and mixed adapters should give different results", |
| ) |
|
|
| pipe.disable_lora() |
|
|
| output_disabled = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_disabled, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_block_scale(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, attaches |
| one adapter and set differnt weights for different blocks (i.e. block lora) |
| """ |
| if self.pipeline_class.__name__ == "StableDiffusion3Pipeline": |
| return |
|
|
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| weights_1 = {"text_encoder": 2, "unet": {"down": 5}} |
| pipe.set_adapters("adapter-1", weights_1) |
| output_weights_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| weights_2 = {"unet": {"up": 5}} |
| pipe.set_adapters("adapter-1", weights_2) |
| output_weights_2 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertFalse( |
| np.allclose(output_weights_1, output_weights_2, atol=1e-3, rtol=1e-3), |
| "LoRA weights 1 and 2 should give different results", |
| ) |
| self.assertFalse( |
| np.allclose(output_no_lora, output_weights_1, atol=1e-3, rtol=1e-3), |
| "No adapter and LoRA weights 1 should give different results", |
| ) |
| self.assertFalse( |
| np.allclose(output_no_lora, output_weights_2, atol=1e-3, rtol=1e-3), |
| "No adapter and LoRA weights 2 should give different results", |
| ) |
|
|
| pipe.disable_lora() |
| output_disabled = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_disabled, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_multi_adapter_block_lora(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, attaches |
| multiple adapters and set differnt weights for different blocks (i.e. block lora) |
| """ |
| if self.pipeline_class.__name__ == "StableDiffusion3Pipeline": |
| return |
|
|
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| if "text_encoder_2" in self.pipeline_class._lora_loadable_modules: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-2") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| scales_1 = {"text_encoder": 2, "unet": {"down": 5}} |
| scales_2 = {"unet": {"down": 5, "mid": 5}} |
| pipe.set_adapters("adapter-1", scales_1) |
|
|
| output_adapter_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters("adapter-2", scales_2) |
| output_adapter_2 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"], [scales_1, scales_2]) |
|
|
| output_adapter_mixed = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| |
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_2, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and 2 should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and mixed adapters should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_2, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 2 and mixed adapters should give different results", |
| ) |
|
|
| pipe.disable_lora() |
|
|
| output_disabled = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_disabled, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| |
| with self.assertRaises(ValueError): |
| pipe.set_adapters(["adapter-1", "adapter-2"], [scales_1]) |
|
|
| def test_simple_inference_with_text_denoiser_block_scale_for_all_dict_options(self): |
| """Tests that any valid combination of lora block scales can be used in pipe.set_adapter""" |
| if self.pipeline_class.__name__ in ["StableDiffusion3Pipeline", "FluxPipeline"]: |
| return |
|
|
| def updown_options(blocks_with_tf, layers_per_block, value): |
| """ |
| Generate every possible combination for how a lora weight dict for the up/down part can be. |
| E.g. 2, {"block_1": 2}, {"block_1": [2,2,2]}, {"block_1": 2, "block_2": [2,2,2]}, ... |
| """ |
| num_val = value |
| list_val = [value] * layers_per_block |
|
|
| node_opts = [None, num_val, list_val] |
| node_opts_foreach_block = [node_opts] * len(blocks_with_tf) |
|
|
| updown_opts = [num_val] |
| for nodes in product(*node_opts_foreach_block): |
| if all(n is None for n in nodes): |
| continue |
| opt = {} |
| for b, n in zip(blocks_with_tf, nodes): |
| if n is not None: |
| opt["block_" + str(b)] = n |
| updown_opts.append(opt) |
| return updown_opts |
|
|
| def all_possible_dict_opts(unet, value): |
| """ |
| Generate every possible combination for how a lora weight dict can be. |
| E.g. 2, {"unet: {"down": 2}}, {"unet: {"down": [2,2,2]}}, {"unet: {"mid": 2, "up": [2,2,2]}}, ... |
| """ |
|
|
| down_blocks_with_tf = [i for i, d in enumerate(unet.down_blocks) if hasattr(d, "attentions")] |
| up_blocks_with_tf = [i for i, u in enumerate(unet.up_blocks) if hasattr(u, "attentions")] |
|
|
| layers_per_block = unet.config.layers_per_block |
|
|
| text_encoder_opts = [None, value] |
| text_encoder_2_opts = [None, value] |
| mid_opts = [None, value] |
| down_opts = [None] + updown_options(down_blocks_with_tf, layers_per_block, value) |
| up_opts = [None] + updown_options(up_blocks_with_tf, layers_per_block + 1, value) |
|
|
| opts = [] |
|
|
| for t1, t2, d, m, u in product(text_encoder_opts, text_encoder_2_opts, down_opts, mid_opts, up_opts): |
| if all(o is None for o in (t1, t2, d, m, u)): |
| continue |
| opt = {} |
| if t1 is not None: |
| opt["text_encoder"] = t1 |
| if t2 is not None: |
| opt["text_encoder_2"] = t2 |
| if all(o is None for o in (d, m, u)): |
| |
| continue |
| opt["unet"] = {} |
| if d is not None: |
| opt["unet"]["down"] = d |
| if m is not None: |
| opt["unet"]["mid"] = m |
| if u is not None: |
| opt["unet"]["up"] = u |
| opts.append(opt) |
|
|
| return opts |
|
|
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(self.scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
|
|
| for scale_dict in all_possible_dict_opts(pipe.unet, value=1234): |
| |
| if not self.has_two_text_encoders and "text_encoder_2" in scale_dict: |
| del scale_dict["text_encoder_2"] |
|
|
| pipe.set_adapters("adapter-1", scale_dict) |
|
|
| def test_simple_inference_with_text_denoiser_multi_adapter_delete_adapter(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, attaches |
| multiple adapters and set/delete them |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-2") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.set_adapters("adapter-1") |
|
|
| output_adapter_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters("adapter-2") |
| output_adapter_2 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
|
|
| output_adapter_mixed = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_2, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and 2 should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and mixed adapters should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_2, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 2 and mixed adapters should give different results", |
| ) |
|
|
| pipe.delete_adapters("adapter-1") |
| output_deleted_adapter_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_deleted_adapter_1, output_adapter_2, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and 2 should give different results", |
| ) |
|
|
| pipe.delete_adapters("adapter-2") |
| output_deleted_adapters = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_deleted_adapters, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
| pipe.delete_adapters(["adapter-1", "adapter-2"]) |
|
|
| output_deleted_adapters = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_deleted_adapters, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| def test_simple_inference_with_text_denoiser_multi_adapter_weighted(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, attaches |
| multiple adapters and set them |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-2") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.set_adapters("adapter-1") |
|
|
| output_adapter_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters("adapter-2") |
| output_adapter_2 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
|
|
| output_adapter_mixed = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| |
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_2, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and 2 should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_1, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 1 and mixed adapters should give different results", |
| ) |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_2, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Adapter 2 and mixed adapters should give different results", |
| ) |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"], [0.5, 0.6]) |
| output_adapter_mixed_weighted = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertFalse( |
| np.allclose(output_adapter_mixed_weighted, output_adapter_mixed, atol=1e-3, rtol=1e-3), |
| "Weighted adapter and mixed adapter should give different results", |
| ) |
|
|
| pipe.disable_lora() |
|
|
| output_disabled = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(output_no_lora, output_disabled, atol=1e-3, rtol=1e-3), |
| "output with no lora and output with lora disabled should give same results", |
| ) |
|
|
| @skip_mps |
| def test_lora_fuse_nan(self): |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| |
| with torch.no_grad(): |
| if self.unet_kwargs: |
| pipe.unet.mid_block.attentions[0].transformer_blocks[0].attn1.to_q.lora_A[ |
| "adapter-1" |
| ].weight += float("inf") |
| else: |
| pipe.transformer.transformer_blocks[0].attn.to_q.lora_A["adapter-1"].weight += float("inf") |
|
|
| |
| with self.assertRaises(ValueError): |
| pipe.fuse_lora(safe_fusing=True) |
|
|
| |
| pipe.fuse_lora(safe_fusing=False) |
|
|
| out = pipe("test", num_inference_steps=2, output_type="np").images |
|
|
| self.assertTrue(np.isnan(out).all()) |
|
|
| def test_get_adapters(self): |
| """ |
| Tests a simple usecase where we attach multiple adapters and check if the results |
| are the expected results |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| adapter_names = pipe.get_active_adapters() |
| self.assertListEqual(adapter_names, ["adapter-1"]) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| adapter_names = pipe.get_active_adapters() |
| self.assertListEqual(adapter_names, ["adapter-2"]) |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
| self.assertListEqual(pipe.get_active_adapters(), ["adapter-1", "adapter-2"]) |
|
|
| def test_get_list_adapters(self): |
| """ |
| Tests a simple usecase where we attach multiple adapters and check if the results |
| are the expected results |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| adapter_names = pipe.get_list_adapters() |
| dicts_to_be_checked = {"text_encoder": ["adapter-1"]} |
| if self.unet_kwargs is not None: |
| dicts_to_be_checked.update({"unet": ["adapter-1"]}) |
| else: |
| dicts_to_be_checked.update({"transformer": ["adapter-1"]}) |
| self.assertDictEqual(adapter_names, dicts_to_be_checked) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| adapter_names = pipe.get_list_adapters() |
| dicts_to_be_checked = {"text_encoder": ["adapter-1", "adapter-2"]} |
| if self.unet_kwargs is not None: |
| dicts_to_be_checked.update({"unet": ["adapter-1", "adapter-2"]}) |
| else: |
| dicts_to_be_checked.update({"transformer": ["adapter-1", "adapter-2"]}) |
| self.assertDictEqual(adapter_names, dicts_to_be_checked) |
|
|
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
| dicts_to_be_checked = {"text_encoder": ["adapter-1", "adapter-2"]} |
| if self.unet_kwargs is not None: |
| dicts_to_be_checked.update({"unet": ["adapter-1", "adapter-2"]}) |
| else: |
| dicts_to_be_checked.update({"transformer": ["adapter-1", "adapter-2"]}) |
| self.assertDictEqual( |
| pipe.get_list_adapters(), |
| dicts_to_be_checked, |
| ) |
|
|
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-3") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-3") |
|
|
| dicts_to_be_checked = {"text_encoder": ["adapter-1", "adapter-2"]} |
| if self.unet_kwargs is not None: |
| dicts_to_be_checked.update({"unet": ["adapter-1", "adapter-2", "adapter-3"]}) |
| else: |
| dicts_to_be_checked.update({"transformer": ["adapter-1", "adapter-2", "adapter-3"]}) |
| self.assertDictEqual(pipe.get_list_adapters(), dicts_to_be_checked) |
|
|
| @require_peft_version_greater(peft_version="0.6.2") |
| def test_simple_inference_with_text_lora_denoiser_fused_multi(self): |
| """ |
| Tests a simple inference with lora attached into text encoder + fuses the lora weights into base model |
| and makes sure it works as expected - with unet and multi-adapter case |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-1") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-1") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-1") |
|
|
| |
| pipe.text_encoder.add_adapter(text_lora_config, "adapter-2") |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config, "adapter-2") |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config, "adapter-2") |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-1") |
| pipe.text_encoder_2.add_adapter(text_lora_config, "adapter-2") |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| |
| pipe.set_adapters(["adapter-1", "adapter-2"]) |
| ouputs_all_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.set_adapters(["adapter-1"]) |
| ouputs_lora_1 = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| pipe.fuse_lora(adapter_names=["adapter-1"]) |
|
|
| |
| outputs_lora_1_fused = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertTrue( |
| np.allclose(ouputs_lora_1, outputs_lora_1_fused, atol=1e-3, rtol=1e-3), |
| "Fused lora should not change the output", |
| ) |
|
|
| pipe.unfuse_lora() |
| pipe.fuse_lora(adapter_names=["adapter-2", "adapter-1"]) |
|
|
| |
| output_all_lora_fused = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue( |
| np.allclose(output_all_lora_fused, ouputs_all_lora, atol=1e-3, rtol=1e-3), |
| "Fused lora should not change the output", |
| ) |
|
|
| @require_peft_version_greater(peft_version="0.9.0") |
| def test_simple_inference_with_dora(self): |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components( |
| scheduler_cls, use_dora=True |
| ) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| output_no_dora_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
| self.assertTrue(output_no_dora_lora.shape == self.output_shape) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| lora_loadable_components = self.pipeline_class._lora_loadable_modules |
| if "text_encoder_2" in lora_loadable_components: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| output_dora_lora = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| self.assertFalse( |
| np.allclose(output_dora_lora, output_no_dora_lora, atol=1e-3, rtol=1e-3), |
| "DoRA lora should change the output", |
| ) |
|
|
| @unittest.skip("This is failing for now - need to investigate") |
| def test_simple_inference_with_text_denoiser_lora_unfused_torch_compile(self): |
| """ |
| Tests a simple inference with lora attached to text encoder and unet, then unloads the lora weights |
| and makes sure it works as expected |
| """ |
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, text_lora_config, denoiser_lora_config = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _, _, inputs = self.get_dummy_inputs(with_generator=False) |
|
|
| pipe.text_encoder.add_adapter(text_lora_config) |
| if self.unet_kwargs is not None: |
| pipe.unet.add_adapter(denoiser_lora_config) |
| else: |
| pipe.transformer.add_adapter(denoiser_lora_config) |
|
|
| self.assertTrue(check_if_lora_correctly_set(pipe.text_encoder), "Lora not correctly set in text encoder") |
| denoiser_to_checked = pipe.unet if self.unet_kwargs is not None else pipe.transformer |
| self.assertTrue(check_if_lora_correctly_set(denoiser_to_checked), "Lora not correctly set in denoiser") |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| pipe.text_encoder_2.add_adapter(text_lora_config) |
| self.assertTrue( |
| check_if_lora_correctly_set(pipe.text_encoder_2), "Lora not correctly set in text encoder 2" |
| ) |
|
|
| pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True) |
| pipe.text_encoder = torch.compile(pipe.text_encoder, mode="reduce-overhead", fullgraph=True) |
|
|
| if self.has_two_text_encoders or self.has_three_text_encoders: |
| pipe.text_encoder_2 = torch.compile(pipe.text_encoder_2, mode="reduce-overhead", fullgraph=True) |
|
|
| |
| _ = pipe(**inputs, generator=torch.manual_seed(0)).images |
|
|
| def test_modify_padding_mode(self): |
| if self.pipeline_class.__name__ in ["StableDiffusion3Pipeline", "FluxPipeline"]: |
| return |
|
|
| def set_pad_mode(network, mode="circular"): |
| for _, module in network.named_modules(): |
| if isinstance(module, torch.nn.Conv2d): |
| module.padding_mode = mode |
|
|
| scheduler_classes = ( |
| [FlowMatchEulerDiscreteScheduler] if self.uses_flow_matching else [DDIMScheduler, LCMScheduler] |
| ) |
| for scheduler_cls in scheduler_classes: |
| components, _, _ = self.get_dummy_components(scheduler_cls) |
| pipe = self.pipeline_class(**components) |
| pipe = pipe.to(torch_device) |
| pipe.set_progress_bar_config(disable=None) |
| _pad_mode = "circular" |
| set_pad_mode(pipe.vae, _pad_mode) |
| set_pad_mode(pipe.unet, _pad_mode) |
|
|
| _, _, inputs = self.get_dummy_inputs() |
| _ = pipe(**inputs).images |
|
|