2023-08-29 13:29:05 +00:00
|
|
|
# copied from https://github.com/tencent-ailab/IP-Adapter (Apache License 2.0)
|
|
|
|
# and modified as needed
|
|
|
|
|
2023-09-08 19:39:22 +00:00
|
|
|
from contextlib import contextmanager
|
2023-09-12 23:09:10 +00:00
|
|
|
from typing import Optional
|
2023-09-08 19:39:22 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
import torch
|
2023-09-08 19:39:22 +00:00
|
|
|
from diffusers.models import UNet2DConditionModel
|
2023-08-29 07:51:55 +00:00
|
|
|
|
2023-08-29 13:29:05 +00:00
|
|
|
# FIXME: Getting errors when trying to use PyTorch 2.0 versions of IPAttnProcessor and AttnProcessor
|
|
|
|
# so for now falling back to the default versions
|
|
|
|
# from .utils import is_torch2_available
|
|
|
|
# if is_torch2_available:
|
|
|
|
# from .attention_processor import IPAttnProcessor2_0 as IPAttnProcessor, AttnProcessor2_0 as AttnProcessor
|
|
|
|
# else:
|
|
|
|
# from .attention_processor import IPAttnProcessor, AttnProcessor
|
2023-09-07 18:10:42 +00:00
|
|
|
from PIL import Image
|
|
|
|
from transformers import CLIPImageProcessor, CLIPVisionModelWithProjection
|
|
|
|
|
2023-09-04 23:54:28 +00:00
|
|
|
from .attention_processor import AttnProcessor, IPAttnProcessor
|
2023-08-29 07:51:55 +00:00
|
|
|
from .resampler import Resampler
|
|
|
|
|
|
|
|
|
|
|
|
class ImageProjModel(torch.nn.Module):
|
2023-09-08 20:00:58 +00:00
|
|
|
"""Image Projection Model"""
|
2023-09-04 23:37:12 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
def __init__(self, cross_attention_dim=1024, clip_embeddings_dim=1024, clip_extra_context_tokens=4):
|
|
|
|
super().__init__()
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
self.cross_attention_dim = cross_attention_dim
|
|
|
|
self.clip_extra_context_tokens = clip_extra_context_tokens
|
|
|
|
self.proj = torch.nn.Linear(clip_embeddings_dim, self.clip_extra_context_tokens * cross_attention_dim)
|
|
|
|
self.norm = torch.nn.LayerNorm(cross_attention_dim)
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
def forward(self, image_embeds):
|
|
|
|
embeds = image_embeds
|
2023-09-04 23:37:12 +00:00
|
|
|
clip_extra_context_tokens = self.proj(embeds).reshape(
|
|
|
|
-1, self.clip_extra_context_tokens, self.cross_attention_dim
|
|
|
|
)
|
2023-08-29 07:51:55 +00:00
|
|
|
clip_extra_context_tokens = self.norm(clip_extra_context_tokens)
|
|
|
|
return clip_extra_context_tokens
|
|
|
|
|
|
|
|
|
|
|
|
class IPAdapter:
|
2023-09-08 19:46:10 +00:00
|
|
|
"""IP-Adapter: https://arxiv.org/pdf/2308.06721.pdf"""
|
|
|
|
|
2023-09-08 20:00:58 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
ip_adapter_ckpt_path: str,
|
|
|
|
device: torch.device,
|
2023-09-12 23:09:10 +00:00
|
|
|
dtype: torch.dtype = torch.float16,
|
2023-09-08 20:00:58 +00:00
|
|
|
num_tokens: int = 4,
|
|
|
|
):
|
2023-09-12 23:09:10 +00:00
|
|
|
self.device = device
|
|
|
|
self.dtype = dtype
|
|
|
|
|
2023-09-08 20:00:58 +00:00
|
|
|
self._ip_adapter_ckpt_path = ip_adapter_ckpt_path
|
|
|
|
self._num_tokens = num_tokens
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-09-08 20:00:58 +00:00
|
|
|
self._clip_image_processor = CLIPImageProcessor()
|
2023-09-12 23:09:10 +00:00
|
|
|
|
|
|
|
# Fields to be initialized later in initialize().
|
|
|
|
self._unet = None
|
|
|
|
self._image_proj_model = None
|
|
|
|
self._attn_processors = None
|
|
|
|
|
|
|
|
self._state_dict = torch.load(self._ip_adapter_ckpt_path, map_location="cpu")
|
|
|
|
|
|
|
|
def is_initialized(self):
|
|
|
|
return self._unet is not None and self._image_proj_model is not None and self._attn_processors is not None
|
|
|
|
|
2023-09-13 23:10:02 +00:00
|
|
|
def initialize(self, unet: UNet2DConditionModel, image_encoder: CLIPVisionModelWithProjection):
|
2023-09-12 23:09:10 +00:00
|
|
|
"""Finish the model initialization process.
|
|
|
|
|
|
|
|
HACK: This is separate from __init__ for compatibility with the model manager. The full initialization requires
|
|
|
|
access to the UNet model to be patched, which can not easily be passed to __init__ by the model manager.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
unet (UNet2DConditionModel): The UNet whose attention blocks will be patched by this IP-Adapter.
|
|
|
|
"""
|
|
|
|
if self.is_initialized():
|
|
|
|
raise Exception("IPAdapter has already been initialized.")
|
|
|
|
|
|
|
|
self._unet = unet
|
2023-09-13 23:10:02 +00:00
|
|
|
# TODO(ryand): Eliminate the need to pass the image_encoder to initialize(). It should be possible to infer the
|
|
|
|
# necessary information from the state_dict.
|
|
|
|
self._image_proj_model = self._init_image_proj_model(image_encoder)
|
2023-09-12 23:09:10 +00:00
|
|
|
self._attn_processors = self._prepare_attention_processors()
|
|
|
|
|
|
|
|
# Copy the weights from the _state_dict into the models.
|
|
|
|
self._image_proj_model.load_state_dict(self._state_dict["image_proj"])
|
|
|
|
ip_layers = torch.nn.ModuleList(self._attn_processors.values())
|
|
|
|
ip_layers.load_state_dict(self._state_dict["ip_adapter"])
|
|
|
|
|
|
|
|
self._state_dict = None
|
|
|
|
|
|
|
|
def to(self, device: torch.device, dtype: Optional[torch.dtype] = None):
|
|
|
|
self.device = device
|
|
|
|
if dtype is not None:
|
|
|
|
self.dtype = dtype
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-09-13 23:10:02 +00:00
|
|
|
for model in [self._image_proj_model, self._attn_processors]:
|
2023-09-12 23:09:10 +00:00
|
|
|
# If this is called before initialize(), then some models will still be None. We just update the non-None
|
|
|
|
# models.
|
|
|
|
if model is not None:
|
|
|
|
model.to(device=self.device, dtype=self.dtype)
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-09-13 23:10:02 +00:00
|
|
|
def _init_image_proj_model(self, image_encoder: CLIPVisionModelWithProjection):
|
2023-08-29 07:51:55 +00:00
|
|
|
image_proj_model = ImageProjModel(
|
2023-09-08 19:39:22 +00:00
|
|
|
cross_attention_dim=self._unet.config.cross_attention_dim,
|
2023-09-13 23:10:02 +00:00
|
|
|
clip_embeddings_dim=image_encoder.config.projection_dim,
|
2023-09-08 20:00:58 +00:00
|
|
|
clip_extra_context_tokens=self._num_tokens,
|
2023-09-12 23:09:10 +00:00
|
|
|
).to(self.device, dtype=self.dtype)
|
2023-08-29 07:51:55 +00:00
|
|
|
return image_proj_model
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-09-08 19:39:22 +00:00
|
|
|
def _prepare_attention_processors(self):
|
|
|
|
"""Creates a dict of attention processors that can later be injected into `self.unet`, and loads the IP-Adapter
|
|
|
|
attention weights into them.
|
|
|
|
"""
|
2023-08-29 07:51:55 +00:00
|
|
|
attn_procs = {}
|
2023-09-08 19:39:22 +00:00
|
|
|
for name in self._unet.attn_processors.keys():
|
|
|
|
cross_attention_dim = None if name.endswith("attn1.processor") else self._unet.config.cross_attention_dim
|
2023-08-29 07:51:55 +00:00
|
|
|
if name.startswith("mid_block"):
|
2023-09-08 19:39:22 +00:00
|
|
|
hidden_size = self._unet.config.block_out_channels[-1]
|
2023-08-29 07:51:55 +00:00
|
|
|
elif name.startswith("up_blocks"):
|
|
|
|
block_id = int(name[len("up_blocks.")])
|
2023-09-08 19:39:22 +00:00
|
|
|
hidden_size = list(reversed(self._unet.config.block_out_channels))[block_id]
|
2023-08-29 07:51:55 +00:00
|
|
|
elif name.startswith("down_blocks"):
|
|
|
|
block_id = int(name[len("down_blocks.")])
|
2023-09-08 19:39:22 +00:00
|
|
|
hidden_size = self._unet.config.block_out_channels[block_id]
|
2023-08-29 07:51:55 +00:00
|
|
|
if cross_attention_dim is None:
|
|
|
|
attn_procs[name] = AttnProcessor()
|
|
|
|
else:
|
2023-09-04 23:37:12 +00:00
|
|
|
attn_procs[name] = IPAttnProcessor(
|
2023-09-07 22:20:21 +00:00
|
|
|
hidden_size=hidden_size,
|
|
|
|
cross_attention_dim=cross_attention_dim,
|
|
|
|
scale=1.0,
|
2023-09-12 23:09:10 +00:00
|
|
|
).to(self.device, dtype=self.dtype)
|
2023-09-08 19:39:22 +00:00
|
|
|
return attn_procs
|
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def apply_ip_adapter_attention(self):
|
|
|
|
"""A context manager that patches `self._unet` with this IP-Adapter's attention processors while it is active.
|
|
|
|
|
|
|
|
Yields:
|
|
|
|
None
|
|
|
|
"""
|
2023-09-12 23:09:10 +00:00
|
|
|
if not self.is_initialized():
|
|
|
|
raise Exception("Call IPAdapter.initialize() before calling IPAdapter.apply_ip_adapter_attention().")
|
|
|
|
|
2023-09-08 19:39:22 +00:00
|
|
|
orig_attn_processors = self._unet.attn_processors
|
2023-09-12 23:09:10 +00:00
|
|
|
# Make a (moderately-) shallow copy of the self._attn_processors dict, because set_attn_processor(...) actually
|
|
|
|
# pops elements from the passed dict.
|
|
|
|
ip_adapter_attn_processors = {k: v for k, v in self._attn_processors.items()}
|
2023-09-08 19:39:22 +00:00
|
|
|
try:
|
2023-09-12 23:09:10 +00:00
|
|
|
self._unet.set_attn_processor(ip_adapter_attn_processors)
|
2023-09-08 19:39:22 +00:00
|
|
|
yield None
|
|
|
|
finally:
|
|
|
|
self._unet.set_attn_processor(orig_attn_processors)
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
@torch.inference_mode()
|
2023-09-13 23:10:02 +00:00
|
|
|
def get_image_embeds(self, pil_image, image_encoder: CLIPVisionModelWithProjection):
|
2023-09-12 23:09:10 +00:00
|
|
|
if not self.is_initialized():
|
|
|
|
raise Exception("Call IPAdapter.initialize() before calling IPAdapter.get_image_embeds().")
|
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
if isinstance(pil_image, Image.Image):
|
|
|
|
pil_image = [pil_image]
|
2023-09-08 20:00:58 +00:00
|
|
|
clip_image = self._clip_image_processor(images=pil_image, return_tensors="pt").pixel_values
|
2023-09-13 23:10:02 +00:00
|
|
|
clip_image_embeds = image_encoder(clip_image.to(self.device, dtype=self.dtype)).image_embeds
|
2023-09-08 20:00:58 +00:00
|
|
|
image_prompt_embeds = self._image_proj_model(clip_image_embeds)
|
|
|
|
uncond_image_prompt_embeds = self._image_proj_model(torch.zeros_like(clip_image_embeds))
|
2023-08-29 07:51:55 +00:00
|
|
|
return image_prompt_embeds, uncond_image_prompt_embeds
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
def set_scale(self, scale):
|
2023-09-12 23:09:10 +00:00
|
|
|
if not self.is_initialized():
|
|
|
|
raise Exception("Call IPAdapter.initialize() before calling IPAdapter.set_scale().")
|
|
|
|
|
2023-09-08 19:39:22 +00:00
|
|
|
for attn_processor in self._attn_processors.values():
|
2023-08-29 07:51:55 +00:00
|
|
|
if isinstance(attn_processor, IPAttnProcessor):
|
|
|
|
attn_processor.scale = scale
|
2023-08-29 13:29:05 +00:00
|
|
|
|
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
class IPAdapterPlus(IPAdapter):
|
|
|
|
"""IP-Adapter with fine-grained features"""
|
|
|
|
|
2023-09-13 23:10:02 +00:00
|
|
|
def _init_image_proj_model(self, image_encoder: CLIPVisionModelWithProjection):
|
2023-08-29 07:51:55 +00:00
|
|
|
image_proj_model = Resampler(
|
2023-09-08 19:39:22 +00:00
|
|
|
dim=self._unet.config.cross_attention_dim,
|
2023-08-29 07:51:55 +00:00
|
|
|
depth=4,
|
|
|
|
dim_head=64,
|
|
|
|
heads=12,
|
2023-09-08 20:00:58 +00:00
|
|
|
num_queries=self._num_tokens,
|
2023-09-13 23:10:02 +00:00
|
|
|
embedding_dim=image_encoder.config.hidden_size,
|
2023-09-08 19:39:22 +00:00
|
|
|
output_dim=self._unet.config.cross_attention_dim,
|
2023-09-04 23:37:12 +00:00
|
|
|
ff_mult=4,
|
2023-09-12 23:09:10 +00:00
|
|
|
).to(self.device, dtype=self.dtype)
|
2023-08-29 07:51:55 +00:00
|
|
|
return image_proj_model
|
2023-08-29 13:29:05 +00:00
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
@torch.inference_mode()
|
2023-09-13 23:10:02 +00:00
|
|
|
def get_image_embeds(self, pil_image, image_encoder: CLIPVisionModelWithProjection):
|
2023-09-12 23:09:10 +00:00
|
|
|
if not self.is_initialized():
|
|
|
|
raise Exception("Call IPAdapter.initialize() before calling IPAdapter.get_image_embeds().")
|
|
|
|
|
2023-08-29 07:51:55 +00:00
|
|
|
if isinstance(pil_image, Image.Image):
|
|
|
|
pil_image = [pil_image]
|
2023-09-08 20:00:58 +00:00
|
|
|
clip_image = self._clip_image_processor(images=pil_image, return_tensors="pt").pixel_values
|
2023-09-12 23:09:10 +00:00
|
|
|
clip_image = clip_image.to(self.device, dtype=self.dtype)
|
2023-09-13 23:10:02 +00:00
|
|
|
clip_image_embeds = image_encoder(clip_image, output_hidden_states=True).hidden_states[-2]
|
2023-09-08 20:00:58 +00:00
|
|
|
image_prompt_embeds = self._image_proj_model(clip_image_embeds)
|
2023-09-13 23:10:02 +00:00
|
|
|
uncond_clip_image_embeds = image_encoder(torch.zeros_like(clip_image), output_hidden_states=True).hidden_states[
|
|
|
|
-2
|
|
|
|
]
|
2023-09-08 20:00:58 +00:00
|
|
|
uncond_image_prompt_embeds = self._image_proj_model(uncond_clip_image_embeds)
|
2023-08-29 13:29:05 +00:00
|
|
|
return image_prompt_embeds, uncond_image_prompt_embeds
|