| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| from dataclasses import dataclass |
| from typing import Any, Callable, Dict, List, Optional, Union |
|
|
| import numpy as np |
| import PIL.Image |
| import torch |
| from diffusers.pipelines.controlnet.multicontrolnet import MultiControlNetModel |
| from diffusers.pipelines.controlnet.pipeline_controlnet import StableDiffusionControlNetPipeline |
| from diffusers.utils import BaseOutput, is_compiled_module, logging |
| from torch.nn import functional as F |
| from utils.light_controlnet import ControlNetModel |
|
|
|
|
| logger = logging.get_logger(__name__) |
|
|
|
|
| @dataclass |
| class LightControlNetPipelineOutput(BaseOutput): |
| """ |
| Output class for Stable Diffusion pipelines. |
| |
| Args: |
| images (`List[PIL.Image.Image]` or `np.ndarray`) |
| List of denoised PIL images of length `batch_size` or numpy array of shape `(batch_size, height, width, |
| num_channels)`. PIL images or numpy array present the denoised images of the diffusion pipeline. |
| nsfw_content_detected (`List[bool]`) |
| List of flags denoting whether the corresponding generated image likely represents "not-safe-for-work" |
| (nsfw) content, or `None` if safety checking could not be performed. |
| """ |
|
|
| images: Union[List[PIL.Image.Image], np.ndarray] |
| nsfw_content_detected: Optional[List[bool]] |
|
|
|
|
| class LightControlNetPipeline(StableDiffusionControlNetPipeline): |
| _optional_components = ["safety_checker", "feature_extractor"] |
|
|
| def check_inputs( |
| self, |
| prompt, |
| image, |
| callback_steps, |
| negative_prompt=None, |
| prompt_embeds=None, |
| negative_prompt_embeds=None, |
| controlnet_conditioning_scale=1.0, |
| ): |
| if (callback_steps is None) or ( |
| callback_steps is not None and (not isinstance(callback_steps, int) or callback_steps <= 0) |
| ): |
| raise ValueError( |
| f"`callback_steps` has to be a positive integer but is {callback_steps} of type" |
| f" {type(callback_steps)}." |
| ) |
|
|
| if prompt is not None and prompt_embeds is not None: |
| raise ValueError( |
| f"Cannot forward both `prompt`: {prompt} and `prompt_embeds`: {prompt_embeds}. Please make sure to" |
| " only forward one of the two." |
| ) |
| elif prompt is None and prompt_embeds is None: |
| raise ValueError( |
| "Provide either `prompt` or `prompt_embeds`. Cannot leave both `prompt` and `prompt_embeds` undefined." |
| ) |
| elif prompt is not None and (not isinstance(prompt, str) and not isinstance(prompt, list)): |
| raise ValueError(f"`prompt` has to be of type `str` or `list` but is {type(prompt)}") |
|
|
| if negative_prompt is not None and negative_prompt_embeds is not None: |
| raise ValueError( |
| f"Cannot forward both `negative_prompt`: {negative_prompt} and `negative_prompt_embeds`:" |
| f" {negative_prompt_embeds}. Please make sure to only forward one of the two." |
| ) |
|
|
| if prompt_embeds is not None and negative_prompt_embeds is not None: |
| if prompt_embeds.shape != negative_prompt_embeds.shape: |
| raise ValueError( |
| "`prompt_embeds` and `negative_prompt_embeds` must have the same shape when passed directly, but" |
| f" got: `prompt_embeds` {prompt_embeds.shape} != `negative_prompt_embeds`" |
| f" {negative_prompt_embeds.shape}." |
| ) |
|
|
| |
| |
| if isinstance(self.controlnet, MultiControlNetModel): |
| if isinstance(prompt, list): |
| logger.warning( |
| f"You have {len(self.controlnet.nets)} ControlNets and you have passed {len(prompt)}" |
| " prompts. The conditionings will be fixed across the prompts." |
| ) |
|
|
| |
| is_compiled = hasattr(F, "scaled_dot_product_attention") and isinstance( |
| self.controlnet, torch._dynamo.eval_frame.OptimizedModule |
| ) |
|
|
| if ( |
| isinstance(self.controlnet, ControlNetModel) |
| or is_compiled |
| and isinstance(self.controlnet._orig_mod, ControlNetModel) |
| ): |
| self.check_image(image, prompt, prompt_embeds) |
| elif ( |
| isinstance(self.controlnet, MultiControlNetModel) |
| or is_compiled |
| and isinstance(self.controlnet._orig_mod, MultiControlNetModel) |
| ): |
| if not isinstance(image, list): |
| raise TypeError("For multiple controlnets: `image` must be type `list`") |
|
|
| |
| |
| elif any(isinstance(i, list) for i in image): |
| raise ValueError("A single batch of multiple conditionings are supported at the moment.") |
| elif len(image) != len(self.controlnet.nets): |
| raise ValueError( |
| "For multiple controlnets: `image` must have the same length as the number of controlnets." |
| ) |
|
|
| for image_ in image: |
| self.check_image(image_, prompt, prompt_embeds) |
| else: |
| assert False |
|
|
| |
| if ( |
| isinstance(self.controlnet, ControlNetModel) |
| or is_compiled |
| and isinstance(self.controlnet._orig_mod, ControlNetModel) |
| ): |
| if not isinstance(controlnet_conditioning_scale, float): |
| raise TypeError("For single controlnet: `controlnet_conditioning_scale` must be type `float`.") |
| elif ( |
| isinstance(self.controlnet, MultiControlNetModel) |
| or is_compiled |
| and isinstance(self.controlnet._orig_mod, MultiControlNetModel) |
| ): |
| if isinstance(controlnet_conditioning_scale, list): |
| if any(isinstance(i, list) for i in controlnet_conditioning_scale): |
| raise ValueError("A single batch of multiple conditionings are supported at the moment.") |
| elif isinstance(controlnet_conditioning_scale, list) and len(controlnet_conditioning_scale) != len( |
| self.controlnet.nets |
| ): |
| raise ValueError( |
| "For multiple controlnets: When `controlnet_conditioning_scale` is specified as `list`, it must have" |
| " the same length as the number of controlnets" |
| ) |
| else: |
| assert False |
|
|
| @torch.no_grad() |
| def __call__( |
| self, |
| prompt: Union[str, List[str]] = None, |
| image: Union[ |
| torch.FloatTensor, |
| PIL.Image.Image, |
| np.ndarray, |
| List[torch.FloatTensor], |
| List[PIL.Image.Image], |
| List[np.ndarray], |
| ] = None, |
| height: Optional[int] = None, |
| width: Optional[int] = None, |
| num_inference_steps: int = 50, |
| guidance_scale: float = 7.5, |
| negative_prompt: Optional[Union[str, List[str]]] = None, |
| num_images_per_prompt: Optional[int] = 1, |
| eta: float = 0.0, |
| generator: Optional[Union[torch.Generator, List[torch.Generator]]] = None, |
| latents: Optional[torch.FloatTensor] = None, |
| prompt_embeds: Optional[torch.FloatTensor] = None, |
| negative_prompt_embeds: Optional[torch.FloatTensor] = None, |
| output_type: Optional[str] = "pil", |
| return_dict: bool = True, |
| callback: Optional[Callable[[int, int, torch.FloatTensor], None]] = None, |
| callback_steps: int = 1, |
| cross_attention_kwargs: Optional[Dict[str, Any]] = None, |
| controlnet_conditioning_scale: Union[float, List[float]] = 1.0, |
| guess_mode: bool = False, |
| ): |
| r""" |
| Function invoked when calling the pipeline for generation. |
| |
| Args: |
| prompt (`str` or `List[str]`, *optional*): |
| The prompt or prompts to guide the image generation. If not defined, one has to pass `prompt_embeds`. |
| instead. |
| image (`torch.FloatTensor`, `PIL.Image.Image`, `np.ndarray`, `List[torch.FloatTensor]`, `List[PIL.Image.Image]`, `List[np.ndarray]`,: |
| `List[List[torch.FloatTensor]]`, `List[List[np.ndarray]]` or `List[List[PIL.Image.Image]]`): |
| The ControlNet input condition. ControlNet uses this input condition to generate guidance to Unet. If |
| the type is specified as `Torch.FloatTensor`, it is passed to ControlNet as is. `PIL.Image.Image` can |
| also be accepted as an image. The dimensions of the output image defaults to `image`'s dimensions. If |
| height and/or width are passed, `image` is resized according to them. If multiple ControlNets are |
| specified in init, images must be passed as a list such that each element of the list can be correctly |
| batched for input to a single controlnet. |
| height (`int`, *optional*, defaults to self.unet.config.sample_size * self.vae_scale_factor): |
| The height in pixels of the generated image. |
| width (`int`, *optional*, defaults to self.unet.config.sample_size * self.vae_scale_factor): |
| The width in pixels of the generated image. |
| num_inference_steps (`int`, *optional*, defaults to 50): |
| The number of denoising steps. More denoising steps usually lead to a higher quality image at the |
| expense of slower inference. |
| guidance_scale (`float`, *optional*, defaults to 7.5): |
| Guidance scale as defined in [Classifier-Free Diffusion Guidance](https://arxiv.org/abs/2207.12598). |
| `guidance_scale` is defined as `w` of equation 2. of [Imagen |
| Paper](https://arxiv.org/pdf/2205.11487.pdf). Guidance scale is enabled by setting `guidance_scale > |
| 1`. Higher guidance scale encourages to generate images that are closely linked to the text `prompt`, |
| usually at the expense of lower image quality. |
| negative_prompt (`str` or `List[str]`, *optional*): |
| The prompt or prompts not to guide the image generation. If not defined, one has to pass |
| `negative_prompt_embeds` instead. Ignored when not using guidance (i.e., ignored if `guidance_scale` is |
| less than `1`). |
| num_images_per_prompt (`int`, *optional*, defaults to 1): |
| The number of images to generate per prompt. |
| eta (`float`, *optional*, defaults to 0.0): |
| Corresponds to parameter eta (η) in the DDIM paper: https://arxiv.org/abs/2010.02502. Only applies to |
| [`schedulers.DDIMScheduler`], will be ignored for others. |
| generator (`torch.Generator` or `List[torch.Generator]`, *optional*): |
| One or a list of [torch generator(s)](https://pytorch.org/docs/stable/generated/torch.Generator.html) |
| to make generation deterministic. |
| latents (`torch.FloatTensor`, *optional*): |
| Pre-generated noisy latents, sampled from a Gaussian distribution, to be used as inputs for image |
| generation. Can be used to tweak the same generation with different prompts. If not provided, a latents |
| tensor will ge generated by sampling using the supplied random `generator`. |
| prompt_embeds (`torch.FloatTensor`, *optional*): |
| Pre-generated text embeddings. Can be used to easily tweak text inputs, *e.g.* prompt weighting. If not |
| provided, text embeddings will be generated from `prompt` input argument. |
| negative_prompt_embeds (`torch.FloatTensor`, *optional*): |
| Pre-generated negative text embeddings. Can be used to easily tweak text inputs, *e.g.* prompt |
| weighting. If not provided, negative_prompt_embeds will be generated from `negative_prompt` input |
| argument. |
| output_type (`str`, *optional*, defaults to `"pil"`): |
| The output format of the generate image. Choose between |
| [PIL](https://pillow.readthedocs.io/en/stable/): `PIL.Image.Image` or `np.array`. |
| return_dict (`bool`, *optional*, defaults to `True`): |
| Whether or not to return a [`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] instead of a |
| plain tuple. |
| callback (`Callable`, *optional*): |
| A function that will be called every `callback_steps` steps during inference. The function will be |
| called with the following arguments: `callback(step: int, timestep: int, latents: torch.FloatTensor)`. |
| callback_steps (`int`, *optional*, defaults to 1): |
| The frequency at which the `callback` function will be called. If not specified, the callback will be |
| called at every step. |
| cross_attention_kwargs (`dict`, *optional*): |
| A kwargs dictionary that if specified is passed along to the `AttentionProcessor` as defined under |
| `self.processor` in |
| [diffusers.cross_attention](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/cross_attention.py). |
| controlnet_conditioning_scale (`float` or `List[float]`, *optional*, defaults to 1.0): |
| The outputs of the controlnet are multiplied by `controlnet_conditioning_scale` before they are added |
| to the residual in the original unet. If multiple ControlNets are specified in init, you can set the |
| corresponding scale as a list. |
| guess_mode (`bool`, *optional*, defaults to `False`): |
| In this mode, the ControlNet encoder will try best to recognize the content of the input image even if |
| you remove all prompts. The `guidance_scale` between 3.0 and 5.0 is recommended. |
| |
| Examples: |
| |
| Returns: |
| [`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] or `tuple`: |
| [`~pipelines.stable_diffusion.StableDiffusionPipelineOutput`] if `return_dict` is True, otherwise a `tuple. |
| When returning a tuple, the first element is a list with the generated images, and the second element is a |
| list of `bool`s denoting whether the corresponding generated image likely represents "not-safe-for-work" |
| (nsfw) content, according to the `safety_checker`. |
| """ |
|
|
| |
| self.check_inputs( |
| prompt, |
| image, |
| callback_steps, |
| negative_prompt, |
| prompt_embeds, |
| negative_prompt_embeds, |
| controlnet_conditioning_scale, |
| ) |
|
|
| |
| if prompt is not None and isinstance(prompt, str): |
| batch_size = 1 |
| elif prompt is not None and isinstance(prompt, list): |
| batch_size = len(prompt) |
| else: |
| batch_size = prompt_embeds.shape[0] |
|
|
| device = self._execution_device |
| |
| |
| |
| do_classifier_free_guidance = guidance_scale > 1.0 |
|
|
| controlnet = self.controlnet._orig_mod if is_compiled_module(self.controlnet) else self.controlnet |
|
|
| if isinstance(controlnet, MultiControlNetModel) and isinstance(controlnet_conditioning_scale, float): |
| controlnet_conditioning_scale = [controlnet_conditioning_scale] * len(controlnet.nets) |
|
|
| |
| text_encoder_lora_scale = ( |
| cross_attention_kwargs.get("scale", None) if cross_attention_kwargs is not None else None |
| ) |
| prompt_embeds = self._encode_prompt( |
| prompt, |
| device, |
| num_images_per_prompt, |
| do_classifier_free_guidance, |
| negative_prompt, |
| prompt_embeds=prompt_embeds, |
| negative_prompt_embeds=negative_prompt_embeds, |
| lora_scale=text_encoder_lora_scale, |
| ) |
|
|
| |
| if isinstance(controlnet, ControlNetModel): |
| image = self.prepare_image( |
| image=image, |
| width=width, |
| height=height, |
| batch_size=batch_size * num_images_per_prompt, |
| num_images_per_prompt=num_images_per_prompt, |
| device=device, |
| dtype=controlnet.dtype, |
| do_classifier_free_guidance=do_classifier_free_guidance, |
| guess_mode=guess_mode, |
| ) |
| height, width = image.shape[-2:] |
| elif isinstance(controlnet, MultiControlNetModel): |
| images = [] |
|
|
| for image_ in image: |
| image_ = self.prepare_image( |
| image=image_, |
| width=width, |
| height=height, |
| batch_size=batch_size * num_images_per_prompt, |
| num_images_per_prompt=num_images_per_prompt, |
| device=device, |
| dtype=controlnet.dtype, |
| do_classifier_free_guidance=do_classifier_free_guidance, |
| guess_mode=guess_mode, |
| ) |
|
|
| images.append(image_) |
|
|
| image = images |
| height, width = image[0].shape[-2:] |
| else: |
| assert False |
|
|
| |
| self.scheduler.set_timesteps(num_inference_steps, device=device) |
| timesteps = self.scheduler.timesteps |
|
|
| |
| num_channels_latents = self.unet.config.in_channels |
| latents = self.prepare_latents( |
| batch_size * num_images_per_prompt, |
| num_channels_latents, |
| height, |
| width, |
| prompt_embeds.dtype, |
| device, |
| generator, |
| latents, |
| ) |
|
|
| |
| extra_step_kwargs = self.prepare_extra_step_kwargs(generator, eta) |
|
|
| |
| num_warmup_steps = len(timesteps) - num_inference_steps * self.scheduler.order |
| with self.progress_bar(total=num_inference_steps) as progress_bar: |
| for i, t in enumerate(timesteps): |
| |
| latent_model_input = torch.cat([latents] * 2) if do_classifier_free_guidance else latents |
| latent_model_input = self.scheduler.scale_model_input(latent_model_input, t) |
|
|
| |
| if guess_mode and do_classifier_free_guidance: |
| |
| control_model_input = latents |
| control_model_input = self.scheduler.scale_model_input(control_model_input, t) |
| else: |
| control_model_input = latent_model_input |
|
|
| |
| guided_hint = self.controlnet( |
| controlnet_cond=image, |
| ) |
|
|
| |
| noise_pred = self.unet( |
| latent_model_input, |
| t, |
| guided_hint=guided_hint, |
| encoder_hidden_states=prompt_embeds, |
| )[0] |
|
|
| |
| if do_classifier_free_guidance: |
| noise_pred_uncond, noise_pred_text = noise_pred.chunk(2) |
| noise_pred = noise_pred_uncond + guidance_scale * (noise_pred_text - noise_pred_uncond) |
|
|
| |
| latents = self.scheduler.step(noise_pred, t, latents, **extra_step_kwargs, return_dict=False)[0] |
| |
| if i == len(timesteps) - 1 or ((i + 1) > num_warmup_steps and (i + 1) % self.scheduler.order == 0): |
| progress_bar.update() |
| if callback is not None and i % callback_steps == 0: |
| callback(i, t, latents) |
|
|
| |
| |
| if hasattr(self, "final_offload_hook") and self.final_offload_hook is not None: |
| self.unet.to("cpu") |
| self.controlnet.to("cpu") |
| torch.cuda.empty_cache() |
|
|
| if not output_type == "latent": |
| image = self.vae.decode(latents / self.vae.config.scaling_factor, return_dict=False)[0] |
| image, has_nsfw_concept = self.run_safety_checker(image, device, prompt_embeds.dtype) |
| else: |
| image = latents |
| has_nsfw_concept = None |
|
|
| if has_nsfw_concept is None: |
| do_denormalize = [True] * image.shape[0] |
| else: |
| do_denormalize = [not has_nsfw for has_nsfw in has_nsfw_concept] |
|
|
| image = self.image_processor.postprocess(image, output_type=output_type, do_denormalize=do_denormalize) |
|
|
| |
| if hasattr(self, "final_offload_hook") and self.final_offload_hook is not None: |
| self.final_offload_hook.offload() |
|
|
| if not return_dict: |
| return (image, has_nsfw_concept) |
|
|
| return LightControlNetPipelineOutput(images=image, nsfw_content_detected=has_nsfw_concept) |
|
|