| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| from ...configuration_utils import ConfigMixin, register_to_config |
| from ...loaders import QwenImageLoraLoaderMixin |
| from ..modular_pipeline import ModularPipeline |
|
|
|
|
| class QwenImagePachifier(ConfigMixin): |
| """ |
| A class to pack and unpack latents for QwenImage. |
| """ |
|
|
| config_name = "config.json" |
|
|
| @register_to_config |
| def __init__(self, patch_size: int = 2): |
| super().__init__() |
|
|
| def pack_latents(self, latents): |
| if latents.ndim != 4 and latents.ndim != 5: |
| raise ValueError(f"Latents must have 4 or 5 dimensions, but got {latents.ndim}") |
|
|
| if latents.ndim == 4: |
| latents = latents.unsqueeze(2) |
|
|
| batch_size, num_channels_latents, num_latent_frames, latent_height, latent_width = latents.shape |
| patch_size = self.config.patch_size |
|
|
| if latent_height % patch_size != 0 or latent_width % patch_size != 0: |
| raise ValueError( |
| f"Latent height and width must be divisible by {patch_size}, but got {latent_height} and {latent_width}" |
| ) |
|
|
| latents = latents.view( |
| batch_size, |
| num_channels_latents, |
| latent_height // patch_size, |
| patch_size, |
| latent_width // patch_size, |
| patch_size, |
| ) |
| latents = latents.permute( |
| 0, 2, 4, 1, 3, 5 |
| ) |
| latents = latents.reshape( |
| batch_size, |
| (latent_height // patch_size) * (latent_width // patch_size), |
| num_channels_latents * patch_size * patch_size, |
| ) |
|
|
| return latents |
|
|
| def unpack_latents(self, latents, height, width, vae_scale_factor=8): |
| if latents.ndim != 3: |
| raise ValueError(f"Latents must have 3 dimensions, but got {latents.ndim}") |
|
|
| batch_size, num_patches, channels = latents.shape |
| patch_size = self.config.patch_size |
|
|
| |
| |
| height = patch_size * (int(height) // (vae_scale_factor * patch_size)) |
| width = patch_size * (int(width) // (vae_scale_factor * patch_size)) |
|
|
| latents = latents.view( |
| batch_size, |
| height // patch_size, |
| width // patch_size, |
| channels // (patch_size * patch_size), |
| patch_size, |
| patch_size, |
| ) |
| latents = latents.permute(0, 3, 1, 4, 2, 5) |
|
|
| latents = latents.reshape(batch_size, channels // (patch_size * patch_size), 1, height, width) |
|
|
| return latents |
|
|
|
|
| class QwenImageLayeredPachifier(ConfigMixin): |
| """ |
| A class to pack and unpack latents for QwenImage Layered. |
| |
| Unlike QwenImagePachifier, this handles 5D latents with shape (B, layers+1, C, H, W). |
| """ |
|
|
| config_name = "config.json" |
|
|
| @register_to_config |
| def __init__(self, patch_size: int = 2): |
| super().__init__() |
|
|
| def pack_latents(self, latents): |
| """ |
| Pack latents from (B, layers, C, H, W) to (B, layers * H/2 * W/2, C*4). |
| """ |
|
|
| if latents.ndim != 5: |
| raise ValueError(f"Latents must have 5 dimensions (B, layers, C, H, W), but got {latents.ndim}") |
|
|
| batch_size, layers, num_channels_latents, latent_height, latent_width = latents.shape |
| patch_size = self.config.patch_size |
|
|
| if latent_height % patch_size != 0 or latent_width % patch_size != 0: |
| raise ValueError( |
| f"Latent height and width must be divisible by {patch_size}, but got {latent_height} and {latent_width}" |
| ) |
|
|
| latents = latents.view( |
| batch_size, |
| layers, |
| num_channels_latents, |
| latent_height // patch_size, |
| patch_size, |
| latent_width // patch_size, |
| patch_size, |
| ) |
| latents = latents.permute(0, 1, 3, 5, 2, 4, 6) |
| latents = latents.reshape( |
| batch_size, |
| layers * (latent_height // patch_size) * (latent_width // patch_size), |
| num_channels_latents * patch_size * patch_size, |
| ) |
| return latents |
|
|
| def unpack_latents(self, latents, height, width, layers, vae_scale_factor=8): |
| """ |
| Unpack latents from (B, seq, C*4) to (B, C, layers+1, H, W). |
| """ |
|
|
| if latents.ndim != 3: |
| raise ValueError(f"Latents must have 3 dimensions, but got {latents.ndim}") |
|
|
| batch_size, _, channels = latents.shape |
| patch_size = self.config.patch_size |
|
|
| height = patch_size * (int(height) // (vae_scale_factor * patch_size)) |
| width = patch_size * (int(width) // (vae_scale_factor * patch_size)) |
|
|
| latents = latents.view( |
| batch_size, |
| layers + 1, |
| height // patch_size, |
| width // patch_size, |
| channels // (patch_size * patch_size), |
| patch_size, |
| patch_size, |
| ) |
| latents = latents.permute(0, 1, 4, 2, 5, 3, 6) |
| latents = latents.reshape( |
| batch_size, |
| layers + 1, |
| channels // (patch_size * patch_size), |
| height, |
| width, |
| ) |
| latents = latents.permute(0, 2, 1, 3, 4) |
|
|
| return latents |
|
|
|
|
| class QwenImageModularPipeline(ModularPipeline, QwenImageLoraLoaderMixin): |
| """ |
| A ModularPipeline for QwenImage. |
| |
| > [!WARNING] > This is an experimental feature and is likely to change in the future. |
| """ |
|
|
| default_blocks_name = "QwenImageAutoBlocks" |
|
|
| @property |
| def default_height(self): |
| return self.default_sample_size * self.vae_scale_factor |
|
|
| @property |
| def default_width(self): |
| return self.default_sample_size * self.vae_scale_factor |
|
|
| @property |
| def default_sample_size(self): |
| return 128 |
|
|
| @property |
| def vae_scale_factor(self): |
| vae_scale_factor = 8 |
| if hasattr(self, "vae") and self.vae is not None: |
| vae_scale_factor = 2 ** len(self.vae.temperal_downsample) |
| return vae_scale_factor |
|
|
| @property |
| def num_channels_latents(self): |
| num_channels_latents = 16 |
| if hasattr(self, "transformer") and self.transformer is not None: |
| num_channels_latents = self.transformer.config.in_channels // 4 |
| return num_channels_latents |
|
|
| @property |
| def is_guidance_distilled(self): |
| is_guidance_distilled = False |
| if hasattr(self, "transformer") and self.transformer is not None: |
| is_guidance_distilled = self.transformer.config.guidance_embeds |
| return is_guidance_distilled |
|
|
| @property |
| def requires_unconditional_embeds(self): |
| requires_unconditional_embeds = False |
|
|
| if hasattr(self, "guider") and self.guider is not None: |
| requires_unconditional_embeds = self.guider._enabled and self.guider.num_conditions > 1 |
|
|
| return requires_unconditional_embeds |
|
|
|
|
| class QwenImageEditModularPipeline(ModularPipeline, QwenImageLoraLoaderMixin): |
| """ |
| A ModularPipeline for QwenImage-Edit. |
| |
| > [!WARNING] > This is an experimental feature and is likely to change in the future. |
| """ |
|
|
| default_blocks_name = "QwenImageEditAutoBlocks" |
|
|
| |
| @property |
| def default_height(self): |
| return self.default_sample_size * self.vae_scale_factor |
|
|
| @property |
| def default_width(self): |
| return self.default_sample_size * self.vae_scale_factor |
|
|
| @property |
| def default_sample_size(self): |
| return 128 |
|
|
| @property |
| def vae_scale_factor(self): |
| vae_scale_factor = 8 |
| if hasattr(self, "vae") and self.vae is not None: |
| vae_scale_factor = 2 ** len(self.vae.temperal_downsample) |
| return vae_scale_factor |
|
|
| @property |
| def num_channels_latents(self): |
| num_channels_latents = 16 |
| if hasattr(self, "transformer") and self.transformer is not None: |
| num_channels_latents = self.transformer.config.in_channels // 4 |
| return num_channels_latents |
|
|
| @property |
| def is_guidance_distilled(self): |
| is_guidance_distilled = False |
| if hasattr(self, "transformer") and self.transformer is not None: |
| is_guidance_distilled = self.transformer.config.guidance_embeds |
| return is_guidance_distilled |
|
|
| @property |
| def requires_unconditional_embeds(self): |
| requires_unconditional_embeds = False |
|
|
| if hasattr(self, "guider") and self.guider is not None: |
| requires_unconditional_embeds = self.guider._enabled and self.guider.num_conditions > 1 |
|
|
| return requires_unconditional_embeds |
|
|
|
|
| class QwenImageEditPlusModularPipeline(QwenImageEditModularPipeline): |
| """ |
| A ModularPipeline for QwenImage-Edit Plus. |
| |
| > [!WARNING] > This is an experimental feature and is likely to change in the future. |
| """ |
|
|
| default_blocks_name = "QwenImageEditPlusAutoBlocks" |
|
|
|
|
| class QwenImageLayeredModularPipeline(QwenImageModularPipeline): |
| """ |
| A ModularPipeline for QwenImage-Layered. |
| |
| > [!WARNING] > This is an experimental feature and is likely to change in the future. |
| """ |
|
|
| default_blocks_name = "QwenImageLayeredAutoBlocks" |
|
|